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'
|
||||
}]
|
||||
: [],
|
||||
self.options.timelineTypes
|
||||
self.options.timelineTypes.length
|
||||
? [{}, {
|
||||
disabled: true,
|
||||
title: 'Timeline'
|
||||
}] : [],
|
||||
self.options.timelineTypes
|
||||
self.options.timelineTypes.length
|
||||
? self.options.timelineTypes.map(function(type) {
|
||||
return {
|
||||
checked: type.id == self.options.timelineType,
|
||||
|
|
Loading…
Reference in a new issue