diff --git a/platform/commonUI/browse/src/windowing/NewWindowAction.js b/platform/commonUI/browse/src/windowing/NewWindowAction.js index 581c0d0f74..68c88bdec6 100644 --- a/platform/commonUI/browse/src/windowing/NewWindowAction.js +++ b/platform/commonUI/browse/src/windowing/NewWindowAction.js @@ -44,8 +44,7 @@ define( perform: function () { // Places the current Url into a variable // Then the Url is opened using $window - var currentUrl = $window.location.href; - $window.open(currentUrl); + $window.open($window.location.href); } }; }