Skip to content

Instantly share code, notes, and snippets.

@donut
Created October 24, 2011 21:54
Show Gist options
  • Save donut/1310442 to your computer and use it in GitHub Desktop.
Save donut/1310442 to your computer and use it in GitHub Desktop.
Is popup window
// Try to guess if the current window is a "popup"
window.isPopup =
window.isPopup || window.opener ||
(window.locationbar && window.locationbar.visible === false) ||
false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment