mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 10:18:00 +01:00
whitespace fixes
This commit is contained in:
@@ -54,14 +54,14 @@ liberator.CommandLine = function () //{{{
|
||||
|
||||
get length() this.store.length,
|
||||
|
||||
get: function(index) this.store.get(index),
|
||||
get: function (index) this.store.get(index),
|
||||
|
||||
add: function (str)
|
||||
{
|
||||
if (!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(liberator.options["history"], true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user