Fix tab completion
This commit is contained in:
parent
b91276c7da
commit
d9f48f0e94
|
@ -703,8 +703,7 @@ $(function() {
|
||||||
function complete(word) {
|
function complete(word) {
|
||||||
var words = commands.slice();
|
var words = commands.slice();
|
||||||
var users = chat.find(".active")
|
var users = chat.find(".active")
|
||||||
.find(".names")
|
.find(".names .user")
|
||||||
.children()
|
|
||||||
.each(function() {
|
.each(function() {
|
||||||
words.push($(this).text().replace(/[+%@~]/, ""));
|
words.push($(this).text().replace(/[+%@~]/, ""));
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "shout",
|
"name": "shout",
|
||||||
"description": "The self-hosted web IRC client",
|
"description": "The self-hosted web IRC client",
|
||||||
"version": "0.39.1",
|
"version": "0.39.2",
|
||||||
"author": "Mattias Erming",
|
"author": "Mattias Erming",
|
||||||
"preferGlobal": true,
|
"preferGlobal": true,
|
||||||
"bin": {
|
"bin": {
|
||||||
|
|
Loading…
Reference in New Issue