* 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:
rginda%netscape.com
2000-05-12 22:30:53 +00:00
parent 4a50592f6a
commit 7cea9948ba
5 changed files with 30 additions and 24 deletions

View File

@@ -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;