Skip to content
This repository has been archived by the owner on May 4, 2022. It is now read-only.

MUMUP-2663 : fix static content links if they are just alt max url type #507

Merged
merged 1 commit into from
Aug 11, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ define(['angular', 'jquery', 'require'], function(angular, $, require) {
return $scope.loginToAuthPage + '/web/apps/details/'+ marketplaceEntry.fname
} else if(layoutObj.altMaxUrl == false && (layoutObj.renderOnWeb || $localStorage.webPortletRender)) {
return 'exclusive/' + layoutObj.fname;
} else if($scope.isStatic(marketplaceEntry)) {
} else if(layoutObj.altMaxUrl == false && $scope.isStatic(marketplaceEntry)) {
return 'static/' + layoutObj.fname;
} else {
return marketplaceEntry.maxUrl;
Expand Down