aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoranekos2010-03-31 13:26:48 +0000
committeranekos2010-03-31 13:26:48 +0000
commit0d58d7196bd541a79f7ccbcbadf0d1adbc6af120 (patch)
tree386f8920ec5aa12f469a92e8881e259c264a4b00
parentb617be9759d2ac7635f2a64d2fbeef3c44ac1d6b (diff)
downloadvimperator-plugins-0d58d7196bd541a79f7ccbcbadf0d1adbc6af120.tar.bz2
pageinfo を途中でぶちきれないようにした
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@37136 d0d07461-0603-4401-acd4-de1884942a52
-rw-r--r--stella.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/stella.js b/stella.js
index 0d635ca..21bf2f6 100644
--- a/stella.js
+++ b/stella.js
@@ -39,7 +39,7 @@ let PLUGIN_INFO =
<name lang="ja">すてら</name>
<description>For Niconico/YouTube/Vimeo, Add control commands and information display(on status line).</description>
<description lang="ja">ニコニコ動画/YouTube/Vimeo 用。操作コマンドと情報表示(ステータスライン上に)追加します。</description>
- <version>0.26.1</version>
+ <version>0.26.2</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>
@@ -1678,7 +1678,10 @@ Thanks:
'Stella Info',
function (verbose)
(self.isValid && self.player.has('pageinfo', 'r')
- ? self.player.pageinfo
+ ? [
+ [n, <div style="white-space: normal">{modules.template.maybeXML(v)}</div>]
+ for each ([n, v] in self.player.pageinfo)
+ ]
: [])
);
},