aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoranekos2010-11-19 11:50:40 +0900
committeranekos2010-11-19 11:50:40 +0900
commit1bb7449fe1491fea567bd72b6481662f18bdf4a6 (patch)
tree2b7a53d5b09af9deecb84c94fddd0debe0c0b878
parent89382d08aecbb3ae81b6ab4e903fa8e4577823ed (diff)
downloadvimperator-plugins-1bb7449fe1491fea567bd72b6481662f18bdf4a6.tar.bz2
Follow Fx4?
-rw-r--r--hints-for-embedded.js10
1 files changed, 4 insertions, 6 deletions
diff --git a/hints-for-embedded.js b/hints-for-embedded.js
index 931b49d..f2a6c6c 100644
--- a/hints-for-embedded.js
+++ b/hints-for-embedded.js
@@ -38,7 +38,7 @@ let PLUGIN_INFO =
<name>Hints For Embedded Objects</name>
<description>Add the hints mode for Embedded objects.</description>
<description lang="ja">埋め込み(embed)オブジェクト用ヒントモード</description>
- <version>1.3.0</version>
+ <version>1.3.1</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>
@@ -58,7 +58,7 @@ let PLUGIN_INFO =
// INFO {{{
let INFO =
<>
- <plugin name="HintsForEmbeded" version="1.3.0"
+ <plugin name="HintsForEmbeded" version="1.3.1"
href="http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/hints-for-embedded.js"
summary="Add the hints mode for embedded objects."
lang="en-US"
@@ -102,7 +102,7 @@ let INFO =
</description>
</item>
</plugin>
- <plugin name="HintsForEmbeded" version="1.3.0"
+ <plugin name="HintsForEmbeded" version="1.3.1"
href="http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/hints-for-embedded.js"
summary="埋め込み(embed)オブジェクト用ヒントモード"
lang="ja"
@@ -194,9 +194,7 @@ let INFO =
Array.map(elem.attributes, function(n) [n.nodeName, n.nodeValue]);
function getInfo (elem)
- Array.concat.apply(
- getAttrs(elem),
- (Array.slice(elem.querySelectorAll('object,embed,param')) || []).map(getInfo));
+ getAttrs(elem).concat((Array.slice(elem.querySelectorAll('object,embed,param')) || []).map(getInfo));
function open (elem) {
let info = getInfo(elem.wrappedJSObject);