adjust autocomplete behavior for sharing menu

This commit is contained in:
Craig Morrissey 2014-10-17 11:55:32 -04:00
parent 9aa809debf
commit 446cebf492
1 changed files with 1 additions and 1 deletions

View File

@ -444,7 +444,7 @@ OC.Share={
}
});
}
$('#shareWith').autocomplete({minLength: 1, source: function(search, response) {
$('#shareWith').autocomplete({minLength: 2, delay: 750, source: function(search, response) {
var $loading = $('#dropdown .shareWithLoading');
$loading.removeClass('hidden');
$.get(OC.filePath('core', 'ajax', 'share.php'), { fetch: 'getShareWith', search: search.term, itemShares: OC.Share.itemShares }, function(result) {