fix a bug in timeline player where the video would not be muted when loaded in muted state
This commit is contained in:
parent
fb64474545
commit
88d25817c1
1 changed files with 1 additions and 2 deletions
|
@ -277,12 +277,10 @@ Ox.VideoTimelinePlayer = function(options, self) {
|
||||||
})
|
})
|
||||||
.appendTo(self.$timelines[self.videoLines[1]][0]);
|
.appendTo(self.$timelines[self.videoLines[1]][0]);
|
||||||
|
|
||||||
Ox.print('MUTED???', self.options.muted)
|
|
||||||
self.$frame = Ox.VideoPlayer({
|
self.$frame = Ox.VideoPlayer({
|
||||||
censored: self.options.censored,
|
censored: self.options.censored,
|
||||||
duration: self.options.duration,
|
duration: self.options.duration,
|
||||||
height: self.tileHeight,
|
height: self.tileHeight,
|
||||||
muted: self.options.muted,
|
|
||||||
position: self.options.position,
|
position: self.options.position,
|
||||||
scaleToFill: true,
|
scaleToFill: true,
|
||||||
type: 'in',
|
type: 'in',
|
||||||
|
@ -320,6 +318,7 @@ Ox.VideoTimelinePlayer = function(options, self) {
|
||||||
censored: self.options.censored,
|
censored: self.options.censored,
|
||||||
duration: self.options.duration,
|
duration: self.options.duration,
|
||||||
height: self.tileHeight,
|
height: self.tileHeight,
|
||||||
|
muted: self.options.muted,
|
||||||
paused: self.options.paused,
|
paused: self.options.paused,
|
||||||
position: self.options.position,
|
position: self.options.position,
|
||||||
scaleToFill: true,
|
scaleToFill: true,
|
||||||
|
|
Loading…
Reference in a new issue