Skip to content

Instantly share code, notes, and snippets.

@itsabdessalam
Created December 17, 2019 07:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itsabdessalam/48c95df811b573d04023608dbbdf20cf to your computer and use it in GitHub Desktop.
Save itsabdessalam/48c95df811b573d04023608dbbdf20cf to your computer and use it in GitHub Desktop.
getTopWindow - helper to retrieve the topmost window
/**
* Helper to retrieve the topmost window
*/
export const getTopWindow = () => {
let w = window;
if (window.top) w = window.top;
else
while (w.parent) {
w = w.parent;
}
return w;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment