diff options
-rw-r--r-- | auto-focus-frame.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/auto-focus-frame.js b/auto-focus-frame.js index 936dedd..4e4d60f 100644 --- a/auto-focus-frame.js +++ b/auto-focus-frame.js @@ -38,7 +38,7 @@ let PLUGIN_INFO = <name>Auto focus frame</name> <description>Automatically focus to largest frame.</description> <description lang="ja">最も大きなフレームに自動的にフォーカスする。</description> - <version>1.0.4</version> + <version>1.0.5</version> <author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author> <license>new BSD License (Please read the source code comments of this plugin)</license> <license lang="ja">修正BSDライセンス (ソースコードのコメントを参照してください)</license> @@ -67,7 +67,7 @@ let PLUGIN_INFO = if (content.frames.length <= 1) return; let [maxSize, maxFrame] = [-1, null]; - for (let frame in util.Array.iterator(content.frames)) { + for (let frame in util.Array.itervalues(content.frames)) { try { if (!(frame.frameElement instanceof HTMLFrameElement)) continue; |