diff options
author | mistic100 <mistic@piwigo.org> | 2013-01-05 10:04:10 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2013-01-05 10:04:10 +0000 |
commit | 4b7b977db2a981e3c624cf3438323cf1bff0140c (patch) | |
tree | 69f36dae80b0de7da54c07c298db79f4e96192f7 /admin/themes/default | |
parent | 46c1519fbe7a8ef0b0208757ffe5a7bce8a67510 (diff) |
minor optimization on photos_add_direct
git-svn-id: http://piwigo.org/svn/trunk@19828 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default')
-rw-r--r-- | admin/themes/default/template/photos_add_direct.tpl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/admin/themes/default/template/photos_add_direct.tpl b/admin/themes/default/template/photos_add_direct.tpl index 3ebfff1d4..6794e0407 100644 --- a/admin/themes/default/template/photos_add_direct.tpl +++ b/admin/themes/default/template/photos_add_direct.tpl @@ -76,11 +76,13 @@ jQuery(document).ready(function(){ jQuery("#uploadWarningsSummary a.showInfo").click(function() { jQuery("#uploadWarningsSummary").hide(); jQuery("#uploadWarnings").show(); + return false; }); jQuery("#showPermissions").click(function() { jQuery(this).parent(".showFieldset").hide(); jQuery("#permissions").show(); + return false; }); {/literal} |