Changeset 29550

Show
Ignore:
Timestamp:
02/05/09 01:06:22 (4 years ago)
Author:
suVene
Message:

custom function に渡すの忘れてた[29547]

Files:
1 modified

Legend:

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

    r29547 r29550  
    205205        let custom = (function(item){ 
    206206 
    207             return function(value){ 
     207            return function(value, value2){ 
    208208                var STORE_KEY = 'plugins-copy-ok-func'; 
    209209                var store = storage.newMap(STORE_KEY, true); 
     
    249249                    return; 
    250250                } 
    251                 return func(value); 
     251                return func(value, value2); 
    252252            }; 
    253253        })(item);