diff options
Diffstat (limited to 'common/content/mappings.js')
-rw-r--r-- | common/content/mappings.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/content/mappings.js b/common/content/mappings.js index 02bd1847..dd19bda4 100644 --- a/common/content/mappings.js +++ b/common/content/mappings.js @@ -172,7 +172,7 @@ var MapHive = Class("MapHive", { extra = extra || {}; let map = Map(modes, keys, description, action, extra); - map.definedAt = commands.getCaller(Components.stack.caller); + map.definedAt = Commands.getCaller(Components.stack.caller); map.hive = this; if (this.name !== "builtin") @@ -344,7 +344,7 @@ var Mappings = Module("mappings", { */ add: function () { let map = this.builtin.add.apply(this.builtin, arguments); - map.definedAt = commands.getCaller(Components.stack.caller); + map.definedAt = Commands.getCaller(Components.stack.caller); return map; }, @@ -361,7 +361,7 @@ var Mappings = Module("mappings", { */ addUserMap: function () { let map = this.user.add.apply(this.user, arguments); - map.definedAt = commands.getCaller(Components.stack.caller); + map.definedAt = Commands.getCaller(Components.stack.caller); return map; }, |