1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-01 08:05:44 +01:00

Adjust some API names to make things more consistent and less confusing.

--HG--
branch : groups
This commit is contained in:
Kris Maglione
2011-02-06 20:18:12 -05:00
parent 83738de163
commit 2a99de96a0
4 changed files with 26 additions and 26 deletions

View File

@@ -301,13 +301,13 @@ var MapHive = Class("MapHive", {
*/
var Mappings = Module("mappings", {
init: function () {
this.user = contexts.subGroup.mappings.user;
this.builtin = contexts.subGroup.mappings.builtin;
this.user = contexts.hives.mappings.user;
this.builtin = contexts.hives.mappings.builtin;
},
repeat: Modes.boundProperty(),
hives: Group.SubGroup("mappings", MapHive),
hives: Group.Hive("mappings", MapHive),
get allHives() contexts.allGroups.mappings,