diff options
author | Doug Kearns <dougkearns@gmail.com> | 2010-12-30 21:54:28 +1100 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2010-12-30 21:54:28 +1100 |
commit | 8e785245c10fd710be41b606670c9ca97b8b8e52 (patch) | |
tree | 9cd7988428b4162ffaefc57ed24295c80cd6433b /common/content/commandline.js | |
parent | 3c414d9ac9b39c19f6273e9ed78195ae14f37a82 (diff) | |
download | pentadactyl-8e785245c10fd710be41b606670c9ca97b8b8e52.tar.gz |
Miscellaneous semicolon, whitespace, and formatting fixes.
Diffstat (limited to 'common/content/commandline.js')
-rw-r--r-- | common/content/commandline.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/content/commandline.js b/common/content/commandline.js index fd54e497..9d9cda50 100644 --- a/common/content/commandline.js +++ b/common/content/commandline.js @@ -81,7 +81,7 @@ var CommandWidgets = Class("CommandWidgets", { onclick="dactyl.modules.commandline.onMultilineOutputEvent(event)"/> </vbox> </toolbar> - </e4x>.elements(), + </e4x>.elements() }); this.elements = {}; @@ -126,7 +126,7 @@ var CommandWidgets = Class("CommandWidgets", { if (!elem.collapsed) dactyl.focus(elem); }, - onVisibility: function (elem, visible) { visible && dactyl.focus(elem)} + onVisibility: function (elem, visible) { visible && dactyl.focus(elem); } }); this.addElement({ name: "prompt", @@ -1607,7 +1607,7 @@ var CommandLine = Module("commandline", { XML.ignoreWhitespace = false; commandline.commandOutput( template.map(commandline._messageHistory.messages, function (message) - <div highlight={message.highlight + " Message"}>{message.message}</div>));; + <div highlight={message.highlight + " Message"}>{message.message}</div>)); } }, { argCount: "0" }); |