From 5544814fcf233ba36d4bd7a8b95b9061ad1d63c0 Mon Sep 17 00:00:00 2001 From: John Foerch Date: Mon, 22 Feb 2010 14:43:30 -0500 Subject: [PATCH] components/commandline.js: whitespace --- components/commandline.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/components/commandline.js b/components/commandline.js index 968fd0e..91d60c5 100644 --- a/components/commandline.js +++ b/components/commandline.js @@ -10,13 +10,15 @@ const Cc = Components.classes; const Ci = Components.interfaces; Components.utils.import("resource://gre/modules/XPCOMUtils.jsm"); -function cmdline() {} +function cmdline () {} cmdline.prototype = { handle: function (cmdline) { if (cmdline.preventDefault) return; cmdline.preventDefault = true; - var conkeror = Cc["@conkeror.mozdev.org/application;1"].getService().wrappedJSObject; + var conkeror = Cc["@conkeror.mozdev.org/application;1"] + .getService() + .wrappedJSObject; conkeror.handle_command_line(cmdline); }, QueryInterface: XPCOMUtils.generateQI([Ci.nsICommandLineHandler]), @@ -29,6 +31,6 @@ cmdline.prototype = { }] }; -function NSGetModule(compMgr, fileSpec) { +function NSGetModule (compMgr, fileSpec) { return XPCOMUtils.generateModule([cmdline]); } -- 2.11.4.GIT