mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-21 08:35:46 +01:00
Camel-case some identifiers gone rogue.
Do not free a camel of the burden of his hump; you may be freeing him from being a camel. - G. K. Chesterton
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
"use strict";
|
||||
|
||||
Components.utils.import("resource://dactyl/base.jsm");
|
||||
defmodule("styles", {
|
||||
defineModule("styles", {
|
||||
exports: ["Style", "Styles", "styles"],
|
||||
require: ["services", "util"],
|
||||
use: ["template"]
|
||||
@@ -100,7 +100,7 @@ const Styles = Module("Styles", {
|
||||
let sheets = system ? this.systemSheets : this.userSheets;
|
||||
let names = system ? this.systemNames : this.userNames;
|
||||
|
||||
if (!isarray(filter))
|
||||
if (!isArray(filter))
|
||||
filter = filter.split(",");
|
||||
if (name && name in names) {
|
||||
var sheet = names[name];
|
||||
@@ -390,7 +390,7 @@ const Styles = Module("Styles", {
|
||||
}
|
||||
});
|
||||
|
||||
endmodule();
|
||||
endModule();
|
||||
|
||||
// catch(e){dump(e.fileName+":"+e.lineNumber+": "+e+"\n" + e.stack);}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user