Browse Source

Merge pull request #1973 from owncloud/share-improvements

reduce minimum length for username suggestions in share dialog, fix #1666
tags/v5.0.0RC1
Jan-Christoph Borchardt 11 years ago
parent
commit
a2147c4f89
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      core/js/share.js

+ 1
- 1
core/js/share.js View File

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

Loading…
Cancel
Save