diff options
author | Doug Kearns <dougkearns@gmail.com> | 2010-09-24 16:19:50 +1000 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2010-09-24 16:19:50 +1000 |
commit | 904f3cb9744d614cb2b658e21a45c6f4243fccd6 (patch) | |
tree | f659f13d277213a89646993976cc1460348c5dc6 /common/content/configbase.js | |
parent | a06b571058f6cb14b708a3ef9d92480f51181a41 (diff) | |
download | pentadactyl-904f3cb9744d614cb2b658e21a45c6f4243fccd6.tar.gz |
More camel-casing.
isInstance -> isinstance as homage to instanceof.
Diffstat (limited to 'common/content/configbase.js')
-rw-r--r-- | common/content/configbase.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/content/configbase.js b/common/content/configbase.js index f49cd3f5..07473baa 100644 --- a/common/content/configbase.js +++ b/common/content/configbase.js @@ -13,8 +13,8 @@ const ConfigBase = Class(ModuleBase, { */ init: function () { this.name = services.get("dactyl:").name; - this.idname = services.get("dactyl:").idname; - this.appname = services.get("dactyl:").appname; + this.idName = services.get("dactyl:").idName; + this.appName = services.get("dactyl:").appName; this.host = services.get("dactyl:").host; highlight.styleableChrome = this.styleableChrome; |