fix a bug in video player
This commit is contained in:
parent
bdddabeb3f
commit
e20fe9f2fe
1 changed files with 6 additions and 4 deletions
|
@ -1917,7 +1917,9 @@ Ox.VideoPlayer = function(options, self) {
|
||||||
) || (
|
) || (
|
||||||
isResolution(title)
|
isResolution(title)
|
||||||
&& parseInt(title, 10) == self.options.resolution
|
&& parseInt(title, 10) == self.options.resolution
|
||||||
) || title == Ox.getObjectById(
|
) || (
|
||||||
|
self.options.timelineTypes.length
|
||||||
|
&& title == Ox.getObjectById(
|
||||||
self.options.timelineTypes,
|
self.options.timelineTypes,
|
||||||
self.options.timelineType
|
self.options.timelineType
|
||||||
).title;
|
).title;
|
||||||
|
|
Loading…
Reference in a new issue