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

Run stylebot -- semicolons.

This commit is contained in:
Doug Kearns
2011-02-01 01:06:49 +11:00
parent cf79af7148
commit 37d62cdeba
17 changed files with 44 additions and 48 deletions

View File

@@ -149,7 +149,7 @@ var ProcessorStack = Class("ProcessorStack", {
this.processors = processors;
return this.execute(result, options["timeout"] && options["timeoutlen"] === 0)
return this.execute(result, options["timeout"] && options["timeoutlen"] === 0);
}
});
@@ -191,7 +191,7 @@ var KeyProcessor = Class("KeyProcessor", {
if (self.preExecute)
self.preExecute.apply(self, args);
let res = map.execute.call(map, update({ self: self.main.params.mappingSelf || self.main.mappingSelf || map },
args))
args));
if (self.postExecute)
self.postExecute.apply(self, args);
return res;
@@ -596,7 +596,7 @@ var Events = Module("events", {
var t = TYPES[type];
var evt = doc.createEvent((t || "HTML") + "Events");
let defaults = DEFAULTS[t || "HTML"]
let defaults = DEFAULTS[t || "HTML"];
evt["init" + t + "Event"].apply(evt, Object.keys(defaults)
.map(function (k) k in opts ? opts[k]
: defaults[k]));