[Windowing] Opens Url

Instead of displaying a dialog of
the url, the url is opened in a new
tab using the new window button.
WTD-16.
This commit is contained in:
Shivam Dave 2015-06-22 13:18:00 -07:00
parent 8d9d8d4900
commit 6b2edc4469

View File

@ -42,7 +42,8 @@ define(
* Open the object in a new window (currently a stub)
*/
perform: function () {
$window.alert($window.location.href);
var currentUrl = $window.location.href;
window.open(currentUrl);
},
getMetadata: function () {