1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 23:07:59 +01:00

Add missing semicolons, fix whitespace and normalise Vim modelines.

This commit is contained in:
Doug Kearns
2013-08-03 01:37:19 +10:00
parent bbb14eaf83
commit f291454e23
62 changed files with 182 additions and 195 deletions

View File

@@ -606,7 +606,7 @@ var Modes = Module("modes", {
},
setter: function (vals) {
modes.all.forEach(function (m) { delete m.passUnknown });
modes.all.forEach(function (m) { delete m.passUnknown; });
vals = vals.map(function (v) update(new String(v.toLowerCase()), {
mode: v.replace(/^!/, "").toUpperCase(),
@@ -634,8 +634,8 @@ var Modes = Module("modes", {
},
prefs: function initPrefs() {
prefs.watch("accessibility.browsewithcaret",
function () { modes.onCaretChange.apply(modes, arguments) });
function () { modes.onCaretChange.apply(modes, arguments); });
}
});
// vim: set fdm=marker sw=4 ts=4 et:
// vim: set fdm=marker sw=4 sts=4 ts=8 et: