diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-10-09 12:42:49 -0400 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-10-09 19:23:44 +0200 |
commit | 4e6f720f14c810b37289843539531c7ecb1fe573 (patch) | |
tree | 286755d7c3dc2ead8aae367888c88c826f0b87c2 /apps | |
parent | 38e9bc2adbacb4ce4a7801996ec143f067a9d731 (diff) | |
download | nextcloud-server-4e6f720f14c810b37289843539531c7ecb1fe573.tar.gz nextcloud-server-4e6f720f14c810b37289843539531c7ecb1fe573.zip |
Fix closing the sharing dropdown by clicking on the share button
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/js/share.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index a171751589a..bc94d78fb76 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -46,7 +46,7 @@ $(document).ready(function() { var appendTo = $(tr).find('td.filename'); // Check if drop down is already visible for a different file if (OC.Share.droppedDown) { - if (item != $('#dropdown').data('item')) { + if ($(tr).data('id') != $('#dropdown').attr('data-item-source')) { OC.Share.hideDropDown(function () { $(tr).addClass('mouseOver'); OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, true, possiblePermissions); |