Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. let new_window = ctrl.$window.open(super_secret_url, '_blank', 'location=no,toolbar=no'); //get around the popup blocker
  2.  
  3. new_window.addEventListener('loadstop', (event) => {
  4. if (event.url.match("/window/close")) {
  5. new_window.close();
  6.  
  7. ctrl.redirect();
  8. }
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement