javascript - how to open a new browser insatnce not tab with angualrjs -
i need open new window when clicking on button ,i used way
$scope.openinnewwindow = function () { $window.open('/newwindow.html', '_blank'); }
but opens new tab, need new browser instance
try http://plnkr.co/edit/f50fwhnlbc3y43mx6iuo?p=preview
$window.open('/newwindow.html',"_blank", "toolbar=yes,scrollbars=yes, resizable=yes, top=500, left=500, width=400, height=400");
Comments
Post a Comment