Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 226 Bytes

File metadata and controls

8 lines (6 loc) · 226 Bytes

Before unload

Do something when current page / popup windows was closed

const popup = window.open('oauth-dialog.html', '_blank', 'width=500,height=500');

popup.onbeforeunload = function(){ /* .. */ };