Changeset 37927
- Timestamp:
- 07/14/10 20:52:41 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
lang/javascript/vimperator-plugins/trunk/stella.js
r37837 r37927 40 40 <description>For Niconico/YouTube/Vimeo, Add control commands and information display(on status line).</description> 41 41 <description lang="ja">ニコニコ動画/YouTube/Vimeo 用。操作コマンドと情報表示(ステータスライン上に)追加します。</description> 42 <version>0.3 1.1</version>42 <version>0.32.0</version> 43 43 <author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author> 44 44 <license>new BSD License (Please read the source code comments of this plugin)</license> … … 1280 1280 return Player.ST_ENDED; 1281 1281 case 'playing': 1282 return Player.ST_PLAYING;1282 return this.storage.bug_paused ? Player.ST_PAUSED : Player.ST_PLAYING; 1283 1283 case 'paused': 1284 1284 return Player.ST_PAUSED; … … 1337 1337 }, 1338 1338 1339 pause: function () this.player.ext_play(false), 1340 1341 play: function () this.player.ext_play(true), 1339 pause: function () { 1340 this.storage.bug_paused = true; 1341 this.player.ext_play(false); 1342 }, 1343 1344 play: function () { 1345 this.storage.bug_paused = false; 1346 this.player.ext_play(true) 1347 }, 1342 1348 1343 1349 playOrPause: function () {
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)