mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
refactor(Player): remove unecessary comments
This commit is contained in:
parent
941d8d7822
commit
9fc13d2c55
1 changed files with 0 additions and 10 deletions
|
|
@ -476,11 +476,6 @@ const Player = ({ urlParams, queryParams }) => {
|
|||
|
||||
break;
|
||||
}
|
||||
// make sure to set Seeking (if not set already)
|
||||
// and update the time property to send the Seek Action
|
||||
// accordingly.
|
||||
// Continuously holding the arrow key should not trigger TimeChanged
|
||||
// until releasing.
|
||||
case 'ArrowRight': {
|
||||
if (!menusOpen && !nextVideoPopupOpen && video.state.time !== null) {
|
||||
const seekDuration = event.shiftKey ? settings.seekShortTimeDuration : settings.seekTimeDuration;
|
||||
|
|
@ -490,11 +485,6 @@ const Player = ({ urlParams, queryParams }) => {
|
|||
|
||||
break;
|
||||
}
|
||||
// make sure to set Seeking (if not set already)
|
||||
// and update the time property to send the Seek Action
|
||||
// accordingly.
|
||||
// Continuously holding the arrow key should not trigger TimeChanged
|
||||
// until releasing.
|
||||
case 'ArrowLeft': {
|
||||
if (!menusOpen && !nextVideoPopupOpen && video.state.time !== null) {
|
||||
const seekDuration = event.shiftKey ? settings.seekShortTimeDuration : settings.seekTimeDuration;
|
||||
|
|
|
|||
Loading…
Reference in a new issue