4 lines
183 B
JavaScript
Vendored
4 lines
183 B
JavaScript
Vendored
// Load this on all pages requiring exit confirmation.
|
|
$(window).bind('beforeunload', function(){
|
|
return "Are you sure you want to exit this page? You might have unsaved work.";
|
|
}); |