1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 07:27:58 +01:00

use 'lambda' notation where appropriate

This commit is contained in:
Doug Kearns
2008-09-23 10:06:04 +00:00
parent 1d139b05e8
commit 851d8d8383
16 changed files with 152 additions and 176 deletions

View File

@@ -282,7 +282,7 @@ liberator.config = { //{{{
}
},
{
completer: function (filter) { return liberator.completion.url(filter); }
completer: function (filter) liberator.completion.url(filter)
});
liberator.commands.add(["redr[aw]"],
@@ -359,7 +359,7 @@ liberator.config = { //{{{
liberator.open("about:blank", liberator.NEW_WINDOW);
},
{
completer: function (filter) { return liberator.completion.url(filter); }
completer: function (filter) liberator.completion.url(filter)
});
/////////////////////////////////////////////////////////////////////////////}}}