Skip to content

Instantly share code, notes, and snippets.

@notpushkin
Created September 27, 2019 13:50
Show Gist options
  • Save notpushkin/7e9cb2925e1600f623c2f36b078c3412 to your computer and use it in GitHub Desktop.
Save notpushkin/7e9cb2925e1600f623c2f36b078c3412 to your computer and use it in GitHub Desktop.
function waitForPopupClosed(popup) {
return new Promise((resolve, reject) => {
const popupTick = setInterval(function() {
if (popup.closed) {
clearInterval(popupTick);
resolve();
}
}, 500);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment