diff options
author | Doug Kearns <dougkearns@gmail.com> | 2011-06-16 01:10:06 +1000 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2011-06-16 01:10:06 +1000 |
commit | 3763e44e3b07f9943adebee05dc5efb5c43776c4 (patch) | |
tree | e1910866b5e134aeeb97f2f268332d18cdfb6676 /common/content | |
parent | 68629f3fd59a5e0f6314f5e18aea9e0f69885c58 (diff) | |
download | pentadactyl-3763e44e3b07f9943adebee05dc5efb5c43776c4.tar.gz |
Add missing semicolons.
--HG--
extra : rebase_source : d0f7ae9f98a691c7a721e8203121964d7976447e
Diffstat (limited to 'common/content')
-rw-r--r-- | common/content/buffer.js | 6 | ||||
-rw-r--r-- | common/content/commandline.js | 4 | ||||
-rw-r--r-- | common/content/hints.js | 2 | ||||
-rw-r--r-- | common/content/mappings.js | 2 | ||||
-rw-r--r-- | common/content/modes.js | 4 |
5 files changed, 9 insertions, 9 deletions
diff --git a/common/content/buffer.js b/common/content/buffer.js index 017e418a..c4b94124 100644 --- a/common/content/buffer.js +++ b/common/content/buffer.js @@ -180,9 +180,9 @@ var Buffer = Module("buffer", { yield ["Host", identity.getEffectiveHost()]; if (statusline.security === "extended") - yield ["Owner", data.subjectOrg] + yield ["Owner", data.subjectOrg]; else - yield ["Owner", _("pageinfo.s.ownerUnverified", data.subjectOrg)] + yield ["Owner", _("pageinfo.s.ownerUnverified", data.subjectOrg)]; if (location(data).length) yield ["Location", location(data)]; @@ -192,7 +192,7 @@ var Buffer = Module("buffer", { if (identity._overrideService.hasMatchingOverride(identity._lastLocation.hostname, (identity._lastLocation.port || 443), data.cert, {}, {})) - yield ["User exception", /*L*/"true"] + yield ["User exception", /*L*/"true"]; break; } }); diff --git a/common/content/commandline.js b/common/content/commandline.js index 149b5c33..e33e3627 100644 --- a/common/content/commandline.js +++ b/common/content/commandline.js @@ -852,7 +852,7 @@ var CommandLine = Module("commandline", { event.target.blur(); dactyl.beep(); } - }, + } } ), @@ -1246,7 +1246,7 @@ var CommandLine = Module("commandline", { for (let [, context] in Iterator(list)) { let done = function done() !(idx >= n + context.items.length || idx == -2 && !context.items.length); - util.waitFor(function () !context.incomplete || done()) + util.waitFor(function () !context.incomplete || done()); if (done()) break; diff --git a/common/content/hints.js b/common/content/hints.js index bb9505a3..da045ed0 100644 --- a/common/content/hints.js +++ b/common/content/hints.js @@ -1031,7 +1031,7 @@ var Hints = Module("hints", { onChange: function () { this.accepted = true; modes.pop(); - }, + } }); }, diff --git a/common/content/mappings.js b/common/content/mappings.js index 97042113..abb62bf4 100644 --- a/common/content/mappings.js +++ b/common/content/mappings.js @@ -649,7 +649,7 @@ var Mappings = Module("mappings", { validator: function (value) Array.concat(value).every(findMode), completer: function () [[array.compact([mode.name.toLowerCase().replace(/_/g, "-"), mode.char]), mode.description] for (mode in values(modes.all)) - if (!mode.hidden)], + if (!mode.hidden)] }; function findMode(name) { diff --git a/common/content/modes.js b/common/content/modes.js index 8eb76aab..523e6cc4 100644 --- a/common/content/modes.js +++ b/common/content/modes.js @@ -113,7 +113,7 @@ var Modes = Module("modes", { }); this.addMode("OUTPUT_MULTILINE", { description: "Active when the multi-line output buffer is open", - bases: [this.NORMAL], + bases: [this.NORMAL] }); this.addMode("INPUT", { @@ -267,7 +267,7 @@ var Modes = Module("modes", { let val = this._modeMap[this._main].display(); if (val) - return "-- " + val + " --" + macromode;; + return "-- " + val + " --" + macromode; return macromode; }, |