Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Commit

Permalink
TM-355: Open multiple CLW instances in seperate windows (#3351) (#3352)
Browse files Browse the repository at this point in the history
resolves TM-355

(cherry picked from commit 66ec7a0)

Co-authored-by: Geert Plaisier <[email protected]>
  • Loading branch information
github-actions[bot] and geertplaisier authored Sep 9, 2022
1 parent d2b0062 commit ea7f22c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Ext.define("viewer.components.CoordinateLinkWindow", {

newUrl=newUrl.replace(/\[RDX\]/g, x);
newUrl=newUrl.replace(/\[RDY\]/g, y);
this.window = window.open(newUrl, 'name', 'height=' + this.config.height + ',width=' + this.config.width + ',location=no,resizable=yes,status=no,toolbar=no,menubar=no');
this.window = window.open(newUrl, this.name, 'height=' + this.config.height + ',width=' + this.config.width + ',location=no,resizable=yes,status=no,toolbar=no,menubar=no');
if (window.focus) {
this.window.focus();
}
Expand Down Expand Up @@ -106,4 +106,4 @@ Ext.define("viewer.components.CoordinateLinkWindow", {
}
this.toolMapClick.deactivateTool();
}
});
});

0 comments on commit ea7f22c

Please sign in to comment.