1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 15:28:00 +01:00

s/'/"/ and remove spaces.

This commit is contained in:
anekos
2008-12-29 07:05:57 +09:00
parent 9c61562ac5
commit 09cfa87fed
5 changed files with 15 additions and 15 deletions

View File

@@ -95,7 +95,7 @@ function CommandLine() //{{{
let str = this.input.value;
if (/^\s*$/.test(str))
return;
this.store.mutate('filter', function (line) line != str);
this.store.mutate("filter", function (line) line != str);
this.store.push(str);
this.store.truncate(options["history"], true);
},