From: Vincent Petry Date: Mon, 7 Oct 2013 11:25:30 +0000 (+0200) Subject: Prevent share dropdown to close too early with autocomplete X-Git-Tag: v6.0.0alpha2~73^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e97aaee1aac6ab81d404e264b86b65357bda96ac;p=nextcloud-server.git Prevent share dropdown to close too early with autocomplete When clicking on an autocomplete result in the sharing dropdown, it will mistakenly be detected as being clicked outside and would trigger the sharing dropdown closing. This fix adds a check to detect clicks inside the autocomplete and prevent closing the dropdown in that case. This fixes #4142 --- diff --git a/core/js/share.js b/core/js/share.js index c0ecbbf36cf..b472797b3cd 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -476,7 +476,7 @@ $(document).ready(function() { $(this).click(function(event) { var target = $(event.target); var isMatched = !target.is('.drop, .ui-datepicker-next, .ui-datepicker-prev, .ui-icon') - && !target.closest('#ui-datepicker-div').length; + && !target.closest('#ui-datepicker-div').length && !target.closest('.ui-autocomplete').length; if (OC.Share.droppedDown && isMatched && $('#dropdown').has(event.target).length === 0) { OC.Share.hideDropDown(); }