1
0
Fork 0
forked from 0x2620/oxjs

updating video elements (fixes bugs with positions and points)

This commit is contained in:
rlx 2011-09-17 07:09:17 +00:00
commit 3f90e96c3a
6 changed files with 44 additions and 24 deletions

View file

@ -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,