mirror of
https://github.com/miniflux/v2.git
synced 2025-08-06 17:41:00 +00:00
parent
eb6991ae49
commit
605eeb4525
1 changed files with 1 additions and 1 deletions
|
@ -781,7 +781,7 @@ function handleMediaControl(button) {
|
||||||
enclosures.forEach((enclosure) => {
|
enclosures.forEach((enclosure) => {
|
||||||
switch (action) {
|
switch (action) {
|
||||||
case "seek":
|
case "seek":
|
||||||
enclosure.currentTime = Math.min(enclosure.currentTime + value, 0);
|
enclosure.currentTime = Math.max(enclosure.currentTime + value, 0);
|
||||||
break;
|
break;
|
||||||
case "speed":
|
case "speed":
|
||||||
// I set a floor speed of 0.25 to avoid too slow speed where it gives the impression it stopped.
|
// I set a floor speed of 0.25 to avoid too slow speed where it gives the impression it stopped.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue