Dotfiles/browserOverides/Sites/dotjs/public_html/projects.invisionapp.com.js
2019-07-30 15:36:41 +01:00

7 lines
302 B
JavaScript

window.addEventListener( "beforeunload", (event)=>{
// Cancel the event as stated by the standard.
event.preventDefault();
// Chrome requires returnValue to be set.
event.returnValue = 'This is invision, not the site. Are you sure?';
return 'This is invision, not the site. Are you sure?';
} );