Fixed exit confirmation message on Chrome

This commit is contained in:
Marcin Kurczewski 2014-02-16 18:57:37 +01:00
parent f3a5de67e7
commit e7a0fdae26

View file

@ -295,7 +295,7 @@ function enableExitConfirmation()
{ {
$(window).bind('beforeunload', function(e) $(window).bind('beforeunload', function(e)
{ {
return true; return 'There are unsaved changes.';
}); });
} }