aboutsummaryrefslogtreecommitdiffstats
path: root/stella.js
diff options
context:
space:
mode:
authoranekos2009-08-27 12:37:51 +0000
committeranekos2009-08-27 12:37:51 +0000
commit9f691e05aae8b0ad1c4f3fe559b0f2f2c9559ea2 (patch)
tree689761603b8b70c9830913d57cfa5c6f5422787b /stella.js
parentb17b6f377d2a877f8fa15bdd561e9d2f251208e6 (diff)
downloadvimperator-plugins-9f691e05aae8b0ad1c4f3fe559b0f2f2c9559ea2.tar.bz2
Follow HEAD
for http://vimperator.org/trac/gitweb/?p=liberator.git;a=commit;h=f20c2b315bb05c2e88d0c672f07dc229cc9267d2 git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@35099 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'stella.js')
-rw-r--r--stella.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/stella.js b/stella.js
index 54e84b7..5bcb9a3 100644
--- a/stella.js
+++ b/stella.js
@@ -39,7 +39,7 @@ let PLUGIN_INFO =
<name lang="ja">すてら</name>
<description>For Niconico/YouTube, Add control commands and information display(on status line).</description>
<description lang="ja">ニコニコ動画/YouTube 用。操作コマンドと情報表示(ステータスライン上に)追加します。</description>
- <version>0.20.6</version>
+ <version>0.20.7</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>
@@ -1372,11 +1372,11 @@ Thanks:
cmdName.replace(/[\[\]]+/g, '') + ' - Stella',
(funcS instanceof Function)
? funcS
- : function (arg, bang) {
+ : function (arg) {
if (!self.isValid)
U.raise('Stella: Current page is not supported');
let p = self.player;
- let func = bang ? funcB : funcS;
+ let func = arg.bang ? funcB : funcS;
if (p.has(func, 'rwt'))
p.toggle(func);
else if (p.has(func, 'rw'))