diff options
Diffstat (limited to 'dist/plyr.js')
-rw-r--r-- | dist/plyr.js | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/dist/plyr.js b/dist/plyr.js index 07dfff51..f88359e4 100644 --- a/dist/plyr.js +++ b/dist/plyr.js @@ -6390,6 +6390,12 @@ var source = { // License: The MIT License (MIT) // ========================================================================== +// Private properties +// TODO: Use a WeakMap for private globals +// const globals = new WeakMap(); + +// Plyr instance + var Plyr = function () { function Plyr(target, options) { var _this = this; @@ -6758,8 +6764,8 @@ var Plyr = function () { */ }, { - key: 'fastForward', - value: function fastForward(seekTime) { + key: 'forward', + value: function forward(seekTime) { this.currentTime = this.currentTime + (utils.is.number(seekTime) ? seekTime : this.config.seekTime); } |