diff options
author | anekos | 2009-02-04 12:54:24 +0000 |
---|---|---|
committer | anekos | 2009-02-04 12:54:24 +0000 |
commit | 5e8c55e3125d3df6ec525bf46634848f1de1be8b (patch) | |
tree | 3c260fcf574a4b9d85aa2dcfd5d410caee12fde3 | |
parent | 3bd7faf3b0ca91a288dcc7fca8aebb76eed00678 (diff) | |
download | vimperator-plugins-5e8c55e3125d3df6ec525bf46634848f1de1be8b.tar.bz2 |
PLUGIN_INFO 追記
最大化のボタンを実装
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@29536 d0d07461-0603-4401-acd4-de1884942a52
-rw-r--r-- | stella.js | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -39,7 +39,7 @@ let PLUGIN_INFO = <name lang="ja">すてら</name> <description>Show video informations on the status line.</description> <description lang="ja">ステータスラインに動画の再生時間などを表示する。</description> - <version>0.19.1</version> + <version>0.19.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> @@ -114,6 +114,19 @@ let PLUGIN_INFO = 再生・ポーズ アイコンをダブルクリック: フルスクリーン切り替え + パネルの cflmr をクリック: + 以下の機能をオンオフします。 + (大文字の時がオン) + C: + コメント + F: + フルスクリーン (Stella によるもの) + L: + 大画面 + M: + ミュート(消音) + R: + リピート == Link == http://d.hatena.ne.jp/nokturnalmortum/20081213/1229168832 ]]></detail> @@ -1514,6 +1527,8 @@ Thanks: onIconDblClick: function () this.player.toggle('fullscreen'), + onLargeClick: function () this.player.toggle('large'), + onLocationChange: function () { if (this.__valid !== this.isValid) { (this.__valid = this.isValid) ? this.enable() : this.disable(); |