Show
Ignore:
Timestamp:
12/05/08 02:02:50 (5 weeks ago)
Author:
anekos
Message:

動かないのを修正

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/vimperator-plugins/trunk/browser_object.js

    r22654 r25883  
    197197 
    198198    var prefix = liberator.globalVariables.browser_object_prefix || ""; 
    199     for (let motion in browserObject.motions){ 
    200         for (let scope in browserObject.scopes){ 
     199    for (let it in browserObject.motions){ 
     200        let motion = it; 
     201        for (let it in browserObject.scopes){ 
     202            let scope = it; 
    201203            liberator.modules.mappings.addUserMap([liberator.modules.modes.NORMAL], [prefix + motion.id + scope.id], 
    202204                "Browser Object Mapping", 
     
    210212                    } 
    211213 
     214                    liberator.log(motion.handler) 
    212215                    targetCollection = scope.handler.call(target.handler,target.handler.collection()); 
    213216                    if(target.handler[motion.handler])