1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-07 10:54:11 +01:00

nsITimer is bloody insane.

This commit is contained in:
Kris Maglione
2011-10-19 07:16:15 -04:00
parent e75de734ed
commit be3218dcfb
3 changed files with 11 additions and 6 deletions

View File

@@ -852,7 +852,8 @@ var Tabs = Module("tabs", {
commands.add(["tabopen", "t[open]", "tabnew"],
"Open one or more URLs in a new tab",
function (args) {
dactyl.open(args[0] || "about:blank", { from: "tabopen", where: dactyl.NEW_TAB, background: args.bang });
dactyl.open(args[0] || "about:blank",
{ from: "tabopen", where: dactyl.NEW_TAB, background: args.bang });
}, {
bang: true,
completer: function (context) completion.url(context),