[Windowing] Remove Varibale

Removed the variable currentUrl because it
was not needed. WTD-16.
This commit is contained in:
Shivam Dave 2015-06-22 15:06:12 -07:00
parent 546af71263
commit fd1c847e2c

View File

@ -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);
}
};
}