typo
This commit is contained in:
parent
07fdb094dd
commit
b133719680
1 changed files with 2 additions and 2 deletions
|
@ -180,7 +180,7 @@ Ox.VideoPlayer = function(options, self) {
|
||||||
.options(options || {})
|
.options(options || {})
|
||||||
.update({
|
.update({
|
||||||
audioTrack: setAudioTrack,
|
audioTrack: setAudioTrack,
|
||||||
enableSubtitles: setSubtitleTrack,
|
enableSubtitles: setSubtitlesTrack,
|
||||||
find: setSubtitleText,
|
find: setSubtitleText,
|
||||||
fullscreen: function() {
|
fullscreen: function() {
|
||||||
self.options.fullscreen = !self.options.fullscreen;
|
self.options.fullscreen = !self.options.fullscreen;
|
||||||
|
@ -2075,7 +2075,7 @@ Ox.VideoPlayer = function(options, self) {
|
||||||
track = Ox.stripTags(title);
|
track = Ox.stripTags(title);
|
||||||
self.options.subtitlesTrack = track == 'None'
|
self.options.subtitlesTrack = track == 'None'
|
||||||
? '' : Ox.getLanguageCodeByName(track);
|
? '' : Ox.getLanguageCodeByName(track);
|
||||||
setSubtitleTrack();
|
setSubtitlesTrack();
|
||||||
} else {
|
} else {
|
||||||
type = self.options.timelineTypes[
|
type = self.options.timelineTypes[
|
||||||
Ox.indexOf(self.options.timelineTypes, function(type) {
|
Ox.indexOf(self.options.timelineTypes, function(type) {
|
||||||
|
|
Loading…
Reference in a new issue