forked from 0x2620/oxjs
updating video elements (fixes bugs with positions and points)
This commit is contained in:
parent
3c419d3ee7
commit
3f90e96c3a
6 changed files with 44 additions and 24 deletions
|
|
@ -17,11 +17,12 @@ Ox.VideoPanelPlayer = function(options, self) {
|
|||
annotationsSize: 256,
|
||||
duration: 0,
|
||||
height: 0,
|
||||
'in': 0,
|
||||
loop: false,
|
||||
muted: false,
|
||||
out: 0,
|
||||
paused: false,
|
||||
playInToOut: false,
|
||||
points: [0, 0],
|
||||
position: 0,
|
||||
poster: '',
|
||||
scaleToFill: false,
|
||||
|
|
@ -70,7 +71,9 @@ Ox.VideoPanelPlayer = function(options, self) {
|
|||
enableKeyboard: true,
|
||||
enableMouse: true,
|
||||
height: getPlayerHeight(),
|
||||
'in': self.options['in'],
|
||||
muted: self.options.muted,
|
||||
out: self.options.out,
|
||||
paused: true,
|
||||
position: self.options.position,
|
||||
scaleToFill: self.options.scaleToFill,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue