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

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -