diff --git a/platform/commonUI/browse/src/windowing/NewWindowAction.js b/platform/commonUI/browse/src/windowing/NewWindowAction.js index 296d2c6937..3a6e4ea061 100644 --- a/platform/commonUI/browse/src/windowing/NewWindowAction.js +++ b/platform/commonUI/browse/src/windowing/NewWindowAction.js @@ -39,11 +39,13 @@ define( function NewWindowAction($window) { return { /** - * Open the object in a new window (currently a stub) + * Open the object in a new window */ 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(currentUrl); }, getMetadata: function () {