I am using angular-router
for page navigation. I need to open the new state in a new window. Is it possible? In my ng-click
function I am using following state method.
$state.go('root.newpage', {uIds :Id});
I tried with the following code but I get 404 error
$window.open($state.go('root.newpage', {uIds :Id}), '_blank');
Any help would be appreciated!