From cc35cb74e191040169100021c906cc8267b3508e Mon Sep 17 00:00:00 2001
From: Brice Maron <brice@bmaron.net>
Date: Sun, 6 Nov 2011 15:29:51 +0100
Subject: [PATCH] Try to avoid closing the share box too soon on multiple
 selections

---
 apps/files_sharing/js/share.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js
index 131571351c..4056d693bf 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 = '';
-- 
GitLab