aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2019-01-31 20:16:45 +0100
committerGitHub <noreply@github.com>2019-01-31 20:16:45 +0100
commitf2ab8dd59cc61fdeb8fa556b9b7ca98facab38e9 (patch)
treec988680d23f269cbfccd6de9397007e963f39b23
parent61ee72a89d65de50609d4335e21f64f810e98d9a (diff)
parentd2945a93755520f8cdc869c2a4328e469a8ffd2b (diff)
downloadnextcloud-server-f2ab8dd59cc61fdeb8fa556b9b7ca98facab38e9.tar.gz
nextcloud-server-f2ab8dd59cc61fdeb8fa556b9b7ca98facab38e9.zip
Merge pull request #13945 from nextcloud/show-autocompletion-as-soon-as-at-is-typed
Show autocompletion as soon as "@" is typed
-rw-r--r--apps/comments/js/commentstabview.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/comments/js/commentstabview.js b/apps/comments/js/commentstabview.js
index 04b0f292299..f87cf29a7d1 100644
--- a/apps/comments/js/commentstabview.js
+++ b/apps/comments/js/commentstabview.js
@@ -185,9 +185,6 @@
},
_onAutoComplete: function(query, callback) {
- if(_.isEmpty(query)) {
- return;
- }
var s = this;
if(!_.isUndefined(this._autoCompleteRequestTimer)) {
clearTimeout(this._autoCompleteRequestTimer);