Merge pull request #3158 from 138138138/138138138-mobileui-forward-rate

This commit is contained in:
Samantaz Fox 2022-07-07 00:05:25 +02:00
commit dc6d088e30
No known key found for this signature in database
GPG Key ID: F42821059186176E

View File

@ -145,7 +145,7 @@ function isMobile() {
}
if (isMobile()) {
player.mobileUi();
player.mobileUi({ touchControls: { seekSeconds: 5 * player.playbackRate() } });
var buttons = ['playToggle', 'volumePanel', 'captionsButton'];
@ -274,6 +274,9 @@ function updateCookie(newVolume, newSpeed) {
player.on('ratechange', function () {
updateCookie(null, player.playbackRate());
if (isMobile()) {
player.mobileUi({ touchControls: { seekSeconds: 5 * player.playbackRate() } });
}
});
player.on('volumechange', function () {