disable subtitles if disabled via options.enableSubtitles, fixes #2898
This commit is contained in:
parent
3637b70244
commit
07ec93179c
1 changed files with 1 additions and 1 deletions
|
@ -2343,7 +2343,7 @@ Ox.VideoPlayer = function(options, self) {
|
|||
}
|
||||
|
||||
function setSubtitlesTrack() {
|
||||
var enableSubtitles = !!self.options.subtitlesTrack,
|
||||
var enableSubtitles = self.options.enableSubtitles && !!self.options.subtitlesTrack,
|
||||
toggleSubtitles = enableSubtitles != self.options.enableSubtitles;
|
||||
self.options.enableSubtitles = enableSubtitles;
|
||||
setSubtitle();
|
||||
|
|
Loading…
Reference in a new issue