diff options
author | Chocobozzz <me@florianbigard.com> | 2018-05-22 16:02:29 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-05-22 16:02:29 +0200 |
commit | d1bd87e066633b8a66266b280327ec828980916b (patch) | |
tree | bfb30a565088cbb2675a8ab224b1ae1fc5dbfd16 /client/src/assets/player/peertube-videojs-plugin.ts | |
parent | 293c885b5c6d4d694792cf430c51d73ecd1f3bee (diff) | |
download | PeerTube-d1bd87e066633b8a66266b280327ec828980916b.tar.gz PeerTube-d1bd87e066633b8a66266b280327ec828980916b.tar.zst PeerTube-d1bd87e066633b8a66266b280327ec828980916b.zip |
Make it works with new autoplay policy
Diffstat (limited to 'client/src/assets/player/peertube-videojs-plugin.ts')
-rw-r--r-- | client/src/assets/player/peertube-videojs-plugin.ts | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/client/src/assets/player/peertube-videojs-plugin.ts b/client/src/assets/player/peertube-videojs-plugin.ts index 5789641fe..1e68100d1 100644 --- a/client/src/assets/player/peertube-videojs-plugin.ts +++ b/client/src/assets/player/peertube-videojs-plugin.ts | |||
@@ -4,7 +4,15 @@ import { VideoFile } from '../../../../shared/models/videos/video.model' | |||
4 | import { renderVideo } from './video-renderer' | 4 | import { renderVideo } from './video-renderer' |
5 | import './settings-menu-button' | 5 | import './settings-menu-button' |
6 | import { PeertubePluginOptions, VideoJSComponentInterface, videojsUntyped } from './peertube-videojs-typings' | 6 | import { PeertubePluginOptions, VideoJSComponentInterface, videojsUntyped } from './peertube-videojs-typings' |
7 | import { getAverageBandwidth, getStoredMute, getStoredVolume, saveAverageBandwidth, saveMuteInStore, saveVolumeInStore } from './utils' | 7 | import { |
8 | getAverageBandwidth, | ||
9 | getStoredMute, | ||
10 | getStoredVolume, | ||
11 | isMobile, | ||
12 | saveAverageBandwidth, | ||
13 | saveMuteInStore, | ||
14 | saveVolumeInStore | ||
15 | } from './utils' | ||
8 | import minBy from 'lodash-es/minBy' | 16 | import minBy from 'lodash-es/minBy' |
9 | import maxBy from 'lodash-es/maxBy' | 17 | import maxBy from 'lodash-es/maxBy' |
10 | import * as CacheChunkStore from 'cache-chunk-store' | 18 | import * as CacheChunkStore from 'cache-chunk-store' |
@@ -262,7 +270,6 @@ class PeerTubePlugin extends Plugin { | |||
262 | 270 | ||
263 | private tryToPlay (done?: Function) { | 271 | private tryToPlay (done?: Function) { |
264 | if (!done) done = function () { /* empty */ } | 272 | if (!done) done = function () { /* empty */ } |
265 | |||
266 | const playPromise = this.player.play() | 273 | const playPromise = this.player.play() |
267 | if (playPromise !== undefined) { | 274 | if (playPromise !== undefined) { |
268 | return playPromise.then(done) | 275 | return playPromise.then(done) |
@@ -348,6 +355,9 @@ class PeerTubePlugin extends Plugin { | |||
348 | // Proxy first play | 355 | // Proxy first play |
349 | const oldPlay = this.player.play.bind(this.player) | 356 | const oldPlay = this.player.play.bind(this.player) |
350 | this.player.play = () => { | 357 | this.player.play = () => { |
358 | // Avoid issue new play policy on mobiles | ||
359 | if (isMobile()) oldPlay() | ||
360 | |||
351 | this.player.addClass('vjs-has-big-play-button-clicked') | 361 | this.player.addClass('vjs-has-big-play-button-clicked') |
352 | this.player.play = oldPlay | 362 | this.player.play = oldPlay |
353 | 363 | ||