Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-02-27 20:57:40 +0400
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-02-27 20:57:53 +0400
commite01ab04d2bb335dd8086d6b892fa106d38a80996 (patch)
tree07f82889f744022a3506e78be03bfa851d23df01 /core
parentfed39d0db2ef547c212eeadc46887f4089a1863e (diff)
reduce minimum length for username suggestions in share dialog, fix #1666
Diffstat (limited to 'core')
-rw-r--r--core/js/share.js2
1 files changed, 1 insertions, 1 deletions
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 {