1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 05:37:58 +01:00

Add missing semicolons.

--HG--
extra : rebase_source : 9b307f142d55c3cd89ea6010ea15f1d26b11846f
This commit is contained in:
Doug Kearns
2010-11-05 09:09:09 +11:00
parent a3c423a609
commit 903268b0e1
18 changed files with 34 additions and 33 deletions

View File

@@ -100,7 +100,7 @@ const CommandWidgets = Class("CommandWidgets", {
get: function () {
let elem = self.getGroup(obj.name, obj.value)[obj.name];
if (obj.value != null)
return [obj.value[0], obj.get ? obj.get.call(this, elem) : elem.value]
return [obj.value[0], obj.get ? obj.get.call(this, elem) : elem.value];
return null;
},
set: function (val) {
@@ -1181,7 +1181,7 @@ const CommandLine = Module("commandline", {
dactyl.registerObserver("echoLine", observe, true);
dactyl.registerObserver("echoMultiline", observe, true);
function observe(str, highlight, dom) {
buffer.push(dom && !isString(str) ? util.domToString(dom) : str)
buffer.push(dom && !isString(str) ? util.domToString(dom) : str);
}
dactyl.trapErrors.apply(dactyl, [fn, self].concat(Array.slice(arguments, 2)));
return buffer.join("\n");