()
| 392 | } |
| 393 | |
| 394 | _updateSettings() { |
| 395 | if (this._playbackType === Playback.VOD) { |
| 396 | this.settings.left = ['playpause', 'position', 'duration'] |
| 397 | } else if (this.dvrEnabled) { |
| 398 | this.settings.left = ['playpause'] |
| 399 | } else { |
| 400 | this.settings.left = ['playstop'] |
| 401 | } |
| 402 | |
| 403 | this.settings.seekEnabled = this.isSeekEnabled() |
| 404 | this.trigger(Events.PLAYBACK_SETTINGSUPDATE) |
| 405 | } |
| 406 | |
| 407 | _onHLSJSError(evt, data) { |
| 408 | const error = { |
nothing calls this directly
no test coverage detected