aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorMinusGix <MinusGix@gmail.com>2019-04-13 01:55:35 +0200
committerGitHub <noreply@github.com>2019-04-13 01:55:35 +0200
commit1399400c3957302e847ed6bc1d385017fe61e932 (patch)
tree06e89fd534f4b0a3b635497ae700828e10bcedc5 /client
parentMerge pull request #58 from MinusGix/patch-3 (diff)
downloadhackchat-1399400c3957302e847ed6bc1d385017fe61e932.tar.gz
hackchat-1399400c3957302e847ed6bc1d385017fe61e932.zip
Make autocomplete with multiple unused results not insert tab
Diffstat (limited to 'client')
-rw-r--r--client/client.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/client/client.js b/client/client.js
index 4f77450..ab766b0 100644
--- a/client/client.js
+++ b/client/client.js
@@ -410,10 +410,12 @@ $('#chatinput').onkeydown = function (e) {
var nicks = onlineUsers.filter(function (nick) {
return nick.toLowerCase().indexOf(stub) == 0
});
-
- if (nicks.length == 1) {
- insertAtCursor(nicks[0].substr(stub.length) + " ");
+
+ if (nicks.length > 0) {
autocompletedNick = true;
+ if (nicks.length == 1) {
+ insertAtCursor(nicks[0].substr(stub.length) + " ");
+ }
}
}