* Makefile.in, makefile.win
install new file. * command-manager.js handle exact match case. * chatzilla.css remove old styles. * output-default.css darker bg on QUIT messages. git-svn-id: svn://10.0.0.236/trunk@69468 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -65,7 +65,11 @@ function cmgr_list (partialName)
|
||||
for (var i in this.commands)
|
||||
{
|
||||
if (this.commands[i].name.indexOf(partialName) == 0)
|
||||
ary.push (this.commands[i]);
|
||||
if (partialName.length == this.commands[i].name.length)
|
||||
/* exact match */
|
||||
return [this.commands[i]];
|
||||
else
|
||||
ary.push (this.commands[i]);
|
||||
}
|
||||
|
||||
return ary;
|
||||
|
||||
Reference in New Issue
Block a user