From f8a0ddb484699415300f8ec3d05f1c9ae8cadf8f Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Mon, 10 Aug 2015 12:39:56 -0700 Subject: [PATCH] [Code Style] Avoid retaining reference to window Avoid https://docs.angularjs.org/error/ng/cpws by changing way reference to is retained. WTD-1482. --- platform/commonUI/browse/src/windowing/NewTabAction.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/platform/commonUI/browse/src/windowing/NewTabAction.js b/platform/commonUI/browse/src/windowing/NewTabAction.js index 72ef1ebcb2..8e253ad52e 100644 --- a/platform/commonUI/browse/src/windowing/NewTabAction.js +++ b/platform/commonUI/browse/src/windowing/NewTabAction.js @@ -41,14 +41,16 @@ define( context = context || {}; this.urlService = urlService; - this.$window = $window; + this.open = function () { + $window.open.apply($window, arguments) + }; // Choose the object to be opened into a new tab this.domainObject = context.selectedObject || context.domainObject; } NewTabAction.prototype.perform = function () { - this.$window.open( + this.open( this.urlService.urlForNewTab("browse", this.domainObject), "_blank" );