diff options
author | Brice Maron <brice@bmaron.net> | 2011-11-06 15:29:51 +0100 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2011-11-06 15:29:51 +0100 |
commit | cc35cb74e191040169100021c906cc8267b3508e (patch) | |
tree | 7c2d9af7ea49260261d61ef01de0cd01caffcf6c /apps/files_sharing | |
parent | 7de591f5cc1cfadc5c2b0f88cded25578cd58350 (diff) | |
download | nextcloud-server-cc35cb74e191040169100021c906cc8267b3508e.tar.gz nextcloud-server-cc35cb74e191040169100021c906cc8267b3508e.zip |
Try to avoid closing the share box too soon on multiple selections
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/js/share.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 131571351c5..4056d693bfa 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -46,6 +46,7 @@ $(document).ready(function() { $('.share').click(function(event) { event.preventDefault(); + event.stopPropagation(); var filenames = getSelectedFiles('name'); var length = filenames.length; var files = ''; |