diff options
author | Kris Maglione <maglione.k@gmail.com> | 2010-12-26 14:47:06 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2010-12-26 14:47:06 -0500 |
commit | acd7ce68c06bcad64392149a12a213d89f1aedc8 (patch) | |
tree | d7e1147d5faa50528810b6de98dafc783364ed8d | |
parent | cd55bfbcb1d0fd28f432aa6b7f81fff630d387c3 (diff) | |
download | pentadactyl-acd7ce68c06bcad64392149a12a213d89f1aedc8.tar.gz |
Fix typo that breaks parsing of command line arguments.
-rw-r--r-- | common/content/dactyl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/dactyl.js b/common/content/dactyl.js index ca2e011a..48848609 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -2069,7 +2069,7 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), { if (!services.commandLineHandler) services.add("commandLineHandler", "@mozilla.org/commandlinehandler/general-startup;1?type=" + config.name); - if (services.commandlinehandler) { + if (services.commandLineHandler) { let commandline = services.commandLineHandler.optionValue; if (commandline) { let args = dactyl.parseCommandLine(commandline); |