Changeset 32503

Show
Ignore:
Timestamp:
04/17/09 00:48:16 (4 years ago)
Author:
anekos
Message:

util.js の変更に対応

Files:
1 modified

Legend:

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

    r23077 r32503  
    55 * @description-ja  extended-hints mode の ";?" でみられる要素の情報を拡張する。 
    66 * @author          janus_wel <janus_wel@fb3.so-net.ne.jp> 
    7  * @version         0.10 
     7 * @version         0.11 
    88 * @minversion      2.0pre 
    99 * ==/VimperatorPlugin== 
     
    1717 * HISTORY 
    1818 *   2008/11/05 ver. 0.10   - initial written. 
     19 *   2009/04/17 ver. 0.11   - follow the util.js changes 
    1920 * 
    2021 * */ 
     
    2728    function (element) { 
    2829        let str = [ 
    29             a.name + ': ' + a.value for (a in liberator.modules.util.Array.iterator(element.attributes)) 
     30            a.name + ': ' + a.value for (a in liberator.modules.util.Array.itervalues(element.attributes)) 
    3031        ].join("\n"); 
    3132        liberator.echo("\nextra information\n" + str, liberator.modules.commandline.APPEND_TO_MESSAGES);