diff options
author | Jesús <heckyel@hyperbola.info> | 2021-08-21 16:20:28 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-08-21 16:20:28 -0500 |
commit | b79c94afcc75bb3c2b3a5d520b36b59af9e95b1e (patch) | |
tree | f78c83e07df7f61889e22601bf756d26b8a00380 | |
parent | 68eb07e540d1a46e6dc3d811a397d0f32296a5a6 (diff) | |
download | libretube-b79c94afcc75bb3c2b3a5d520b36b59af9e95b1e.tar.lz libretube-b79c94afcc75bb3c2b3a5d520b36b59af9e95b1e.tar.xz libretube-b79c94afcc75bb3c2b3a5d520b36b59af9e95b1e.zip |
[play.js]: update
-rw-r--r-- | libretube-theme/static/js/play.js | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/libretube-theme/static/js/play.js b/libretube-theme/static/js/play.js index 9c23c84..6655e8a 100644 --- a/libretube-theme/static/js/play.js +++ b/libretube-theme/static/js/play.js @@ -1,20 +1,21 @@ // @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3-or-Later const player = new Plyr('#player-ply', { - captions: { active: true, language: 'es' }, - controls: [ - 'play-large', - 'play', - 'progress', - 'current-time', - 'mute', - 'volume', - 'captions', - 'settings', - 'download', - 'fullscreen' - ], - iconUrl: "/theme/modules/plyr/plyr.svg", - blankVideo: "/theme/modules/plyr/blank.webm", - debug: true, + captions: { active: true, language: 'es' }, + controls: [ + 'play-large', + 'play', + 'progress', + 'current-time', + 'duration', + 'mute', + 'volume', + 'captions', + 'settings', + 'download', + 'fullscreen' + ], + iconUrl: "/theme/modules/plyr/plyr.svg", + blankVideo: "/theme/modules/plyr/blank.webm", + debug: false, }); // @license-end |