diff options
author | Sam Potts <sam@potts.es> | 2018-03-22 00:05:24 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-22 00:05:24 +1100 |
commit | a27248d3b6e0067f7aa36f34125d888f2a33f2fa (patch) | |
tree | 5f88bfc2849c573a733990e70cceec46da5aabd4 /src/js/utils.js | |
parent | 7132eccf50c6f84a3fc06fae6f43e3f1951c91b4 (diff) | |
parent | 75e9f3c2e3333d8310d0875a27f9ba8d645ddd30 (diff) | |
download | plyr-a27248d3b6e0067f7aa36f34125d888f2a33f2fa.tar.lz plyr-a27248d3b6e0067f7aa36f34125d888f2a33f2fa.tar.xz plyr-a27248d3b6e0067f7aa36f34125d888f2a33f2fa.zip |
Merge pull request #820 from saadshahd/patch-1
Fix fast-forward control
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), |