aboutsummaryrefslogtreecommitdiffstats
path: root/browser_object.js
diff options
context:
space:
mode:
authoranekos2008-11-01 08:45:54 +0000
committeranekos2008-11-01 08:45:54 +0000
commit8540a08cc4517749bbc941ed6c8bad081e49c7fc (patch)
treed346ba135966ed7b62ad5f7eddaf450790981ea6 /browser_object.js
parent831b9438b243114d44f13cd3d9814d3f0a94e801 (diff)
downloadvimperator-plugins-8540a08cc4517749bbc941ed6c8bad081e49c7fc.tar.bz2
CVS Head対応。
他。 git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@22507 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'browser_object.js')
-rw-r--r--browser_object.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/browser_object.js b/browser_object.js
index 4f7ed8d..516c134 100644
--- a/browser_object.js
+++ b/browser_object.js
@@ -203,7 +203,7 @@
for (let s in browserObject.scopes){
let scope = s;
- liberator.mappings.addUserMap([liberator.modes.NORMAL], [prefix + motion.id + scope.id],
+ liberator.modules.mappings.addUserMap([liberator.modules.modes.NORMAL], [prefix + motion.id + scope.id],
"Browser Object Mapping",
function (arg) {
var target, targetCollection;
@@ -222,9 +222,9 @@
},
{ flags: liberator.Mappings.flags.ARGUMENT});
}
- let map = liberator.mappings.get(null,motion.id);
+ let map = liberator.modules.mappings.get(null,motion.id);
if(!prefix && map){
- liberator.mappings.addUserMap([liberator.modes.NORMAL],
+ liberator.modules.mappings.addUserMap([liberator.modules.modes.NORMAL],
[motion.id + motion.id], map.description, map.action,
{});
}