UNPKG

tricks

Version:
23 lines (20 loc) 435 B
// Close a window export default window => { // Is this window within an Iframe? if (window.frameElement) { window.parent.document.body.removeChild(window.frameElement); } else { // Close this current window try { window.close(); } catch { // Continue } // IOS bug wont let us close a popup if still loading if (window.addEventListener) { window.addEventListener('load', () => window.close()); } } };