We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f664099 commit f347d6fCopy full SHA for f347d6f
chrome/player/ui/InterfaceController.mjs
@@ -540,7 +540,7 @@ export class InterfaceController {
540
541
DOMElements.skipForwardButton.addEventListener('click', (e) => {
542
this.client.setSeekSave(false);
543
- this.client.currentTime += 10;
+ this.client.currentTime += this.client.options.seekStepSize * 5;
544
this.client.setSeekSave(true);
545
e.stopPropagation();
546
});
@@ -549,7 +549,7 @@ export class InterfaceController {
549
550
DOMElements.skipBackwardButton.addEventListener('click', (e) => {
551
552
- this.client.currentTime += -10;
+ this.client.currentTime += -this.client.options.seekStepSize * 5;
553
554
555
0 commit comments