1
0
espelhamento de https://github.com/nextcloud/server.git sincronizado 2024-08-10 02:11:09 +02:00

Merge pull request #1973 from owncloud/share-improvements

reduce minimum length for username suggestions in share dialog, fix #1666
Esse commit está contido em:
Jan-Christoph Borchardt 2013-02-27 15:07:07 -08:00
commit a2147c4f89

Ver arquivo

@ -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 {