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

Commit

Permalink
MUMUP-2663 : fix static content links if they are just alt max url ty…
Browse files Browse the repository at this point in the history
…pe (#507)
  • Loading branch information
Tim Levett authored Aug 11, 2016
1 parent bbf6fb0 commit 94f46d5
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 94f46d5

Please sign in to comment.