From: Jan-Christoph Borchardt Date: Wed, 27 Feb 2013 16:57:40 +0000 (+0100) Subject: reduce minimum length for username suggestions in share dialog, fix #1666 X-Git-Tag: v5.0.0RC1~10^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e01ab04d2bb335dd8086d6b892fa106d38a80996;p=nextcloud-server.git reduce minimum length for username suggestions in share dialog, fix #1666 --- diff --git a/core/js/share.js b/core/js/share.js index 328d57928ec..145c31a86c8 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -213,7 +213,7 @@ OC.Share={ } }); } - $('#shareWith').autocomplete({minLength: 2, source: function(search, response) { + $('#shareWith').autocomplete({minLength: 1, source: function(search, response) { // if (cache[search.term]) { // response(cache[search.term]); // } else {