Changeset 32501

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

util.js の変更に対応

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/vimperator-plugins/trunk/auto-focus-frame.js

    r31787 r32501  
    3939  <description>Automatically focus to largest frame.</description> 
    4040  <description lang="ja">最も大きなフレームに自動的にフォーカスする。</description> 
    41   <version>1.0.4</version> 
     41  <version>1.0.5</version> 
    4242  <author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author> 
    4343  <license>new BSD License (Please read the source code comments of this plugin)</license> 
     
    6868        return; 
    6969      let [maxSize, maxFrame] = [-1, null]; 
    70       for (let frame in util.Array.iterator(content.frames)) { 
     70      for (let frame in util.Array.itervalues(content.frames)) { 
    7171        try { 
    7272          if (!(frame.frameElement instanceof HTMLFrameElement))