diff options
author | anekos | 2010-03-09 14:19:08 +0000 |
---|---|---|
committer | anekos | 2010-03-09 14:19:08 +0000 |
commit | b5cf7dc45de12673060a99f3ecb9da472a8e6fc6 (patch) | |
tree | b83b622abdce0ea65ec40d147c41435519e19b15 /stella.js | |
parent | 78bf692b49c7af21fcd54ae57b3a938e0079f7a8 (diff) | |
download | vimperator-plugins-b5cf7dc45de12673060a99f3ecb9da472a8e6fc6.tar.bz2 |
補完候補のサムネイル画像の高さを低くした。(バグ対応)
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@36975 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'stella.js')
-rw-r--r-- | stella.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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.25.0</version> + <version>0.25.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> @@ -1659,7 +1659,7 @@ Thanks: context.process = [ process[0], function (item, text) - (item.thumbnail ? <><img src={item.thumbnail} style="margin-right: 0.5em;"/>{text}</> + (item.thumbnail ? <><img src={item.thumbnail} style="margin-right: 0.5em; height: 3em;"/>{text}</> : process[1].apply(this, arguments)) ]; context.completions = self.player.relations.map(function (rel) rel.completionItem); |