CC-3537: When you try to navigate away while uploading you get a "false" message

-fixed
This commit is contained in:
Martin Konecny 2012-03-28 23:27:31 -04:00
parent 29afb6e191
commit bc629bf441
1 changed files with 1 additions and 3 deletions

View File

@ -55,9 +55,7 @@ $(document).ready(function() {
$(window).bind('beforeunload', function(){
if(uploadProgress){
if(!confirm("You are currently uploading files.\nGoing to another screen will cancel the upload process.\nAre you sure you want to cancel the upload process and go to the screen you clicked on?")){
return false;
}
return "You are currently uploading files.\nGoing to another screen will cancel the upload process.\nAre you sure you want to leave the page?";
}
});