Revert API method change

This commit is contained in:
Sam Potts
2018-03-27 21:15:11 +11:00
parent d96957d086
commit 0cf75eed3f
10 changed files with 32 additions and 15 deletions

View File

@ -405,7 +405,7 @@ class Plyr {
* Fast forward
* @param {number} seekTime - how far to fast forward in seconds. Defaults to the config.seekTime
*/
fastForward(seekTime) {
forward(seekTime) {
this.currentTime = this.currentTime + (utils.is.number(seekTime) ? seekTime : this.config.seekTime);
}