fix a bug in video player
This commit is contained in:
parent
6619e971a5
commit
bdddabeb3f
1 changed files with 2 additions and 2 deletions
|
@ -1946,12 +1946,12 @@ Ox.VideoPlayer = function(options, self) {
|
||||||
title: 'Subtitles'
|
title: 'Subtitles'
|
||||||
}]
|
}]
|
||||||
: [],
|
: [],
|
||||||
self.options.timelineTypes
|
self.options.timelineTypes.length
|
||||||
? [{}, {
|
? [{}, {
|
||||||
disabled: true,
|
disabled: true,
|
||||||
title: 'Timeline'
|
title: 'Timeline'
|
||||||
}] : [],
|
}] : [],
|
||||||
self.options.timelineTypes
|
self.options.timelineTypes.length
|
||||||
? self.options.timelineTypes.map(function(type) {
|
? self.options.timelineTypes.map(function(type) {
|
||||||
return {
|
return {
|
||||||
checked: type.id == self.options.timelineType,
|
checked: type.id == self.options.timelineType,
|
||||||
|
|
Loading…
Reference in a new issue