diff --git a/README.md b/README.md index 74489cf2..482801f4 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ These are the commands currently implemented: - [x] /say - [x] /send - [x] /server -- [ ] /slap +- [x] /slap - [ ] /time - [x] /topic - [ ] /version diff --git a/client/js/chat.js b/client/js/chat.js index c03e35e2..658e0146 100644 --- a/client/js/chat.js +++ b/client/js/chat.js @@ -27,6 +27,7 @@ $(function() { "/say", "/send", "/server", + "/slap", "/topic", "/voice", "/whois", @@ -62,7 +63,7 @@ $(function() { .sticky({speed: 400, overflow: "auto"}) .end() .find(".input") - .tabComplete(commands); + .tabComplete(commands, {hint: false}); $("#network-" + data.id) .append(render("channels", {channels: [data.chan]})) @@ -81,7 +82,7 @@ $(function() { var channels = $.map(data.networks, function(n) { return n.channels; }); chat.html(render("windows", {windows: channels})) .find(".input") - .tabComplete(commands) + .tabComplete(commands, {hint: false}) .end() .find(".hidden") .prev(".show-more") diff --git a/package.json b/package.json index 5465061a..2f659046 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "shout", "description": "The modern IRC client", - "version": "1.0.0-alpha2", + "version": "1.0.0-alpha3", "homepage": "http://github.com/erming/shout", "author": { "name": "Mattias Erming",