diff options
author | Saad Shahd <dev.saad.shahd@gmail.com> | 2018-03-20 15:20:34 +0200 |
---|---|---|
committer | Saad Shahd <dev.saad.shahd@gmail.com> | 2018-03-21 12:15:57 +0200 |
commit | 75e9f3c2e3333d8310d0875a27f9ba8d645ddd30 (patch) | |
tree | ca4232460419b2b723f102af7331192d8fe43b1b /src/js/utils.js | |
parent | bb7eea27e513bf33dd4a4d846b3234b37a5be48d (diff) | |
download | plyr-75e9f3c2e3333d8310d0875a27f9ba8d645ddd30.tar.lz plyr-75e9f3c2e3333d8310d0875a27f9ba8d645ddd30.tar.xz plyr-75e9f3c2e3333d8310d0875a27f9ba8d645ddd30.zip |
Fix fast-forward control
fast-forward control doesn't work.
Diffstat (limited to 'src/js/utils.js')
-rw-r--r-- | src/js/utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/utils.js b/src/js/utils.js index 593e2bca..eaa3db1c 100644 --- a/src/js/utils.js +++ b/src/js/utils.js @@ -440,7 +440,7 @@ const utils = { pause: utils.getElement.call(this, this.config.selectors.buttons.pause), restart: utils.getElement.call(this, this.config.selectors.buttons.restart), rewind: utils.getElement.call(this, this.config.selectors.buttons.rewind), - forward: utils.getElement.call(this, this.config.selectors.buttons.forward), + fastForward: utils.getElement.call(this, this.config.selectors.buttons.fastForward), mute: utils.getElement.call(this, this.config.selectors.buttons.mute), pip: utils.getElement.call(this, this.config.selectors.buttons.pip), airplay: utils.getElement.call(this, this.config.selectors.buttons.airplay), |