aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2014-09-01 12:13:55 +0000
committerplegall <plg@piwigo.org>2014-09-01 12:13:55 +0000
commit0e28516b9bf933960cd1524b8435d6a9d497f752 (patch)
tree1dec34cd8e3ffc4a16eeda6c25f41e8d35477fad /admin
parentccea530eae8dafef8c573586562299693c4a8d39 (diff)
bug 3127: during upload, warn user if she wants to leave the page (works fine on Firefox/Chrome)
git-svn-id: http://piwigo.org/svn/trunk@29356 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin')
-rw-r--r--admin/themes/default/template/photos_add_direct.tpl9
1 files changed, 8 insertions, 1 deletions
diff --git a/admin/themes/default/template/photos_add_direct.tpl b/admin/themes/default/template/photos_add_direct.tpl
index 971346e1e..10f861d96 100644
--- a/admin/themes/default/template/photos_add_direct.tpl
+++ b/admin/themes/default/template/photos_add_direct.tpl
@@ -103,6 +103,11 @@ jQuery(document).ready(function(){
BeforeUpload: function(up, file) {
console.log('[BeforeUpload]', file);
+ // warn user if she wants to leave page while upload is running
+ jQuery(window).bind('beforeunload', function() {
+ return "{/literal}{'Upload in progress'|translate|escape}{literal}";
+ });
+
// no more change on category/level
jQuery("select[name=level]").attr("disabled", "disabled");
@@ -165,10 +170,12 @@ jQuery(document).ready(function(){
jQuery(".batchLink").html(sprintf(batch_Label, uploadedPhotos.length));
jQuery(".afterUploadActions").show();
+
+ // user can safely leave page without warning
+ jQuery(window).unbind('beforeunload');
}
}
});
-
{/literal}
});
{/footer_script}