forked from 0x2620/pandora
remove position, Ox.VideoPlayer fails with that right now
This commit is contained in:
parent
7bc98ad2ad
commit
6ccc9ef0bc
1 changed files with 4 additions and 3 deletions
|
@ -22,7 +22,8 @@ Ox.load('UI', {
|
|||
var videoOptions = getVideoOptions(result.data);
|
||||
that.append(pandora.player = Ox.VideoPlayer({
|
||||
censored: videoOptions.censored,
|
||||
controlsBottom: ['play', 'volume', 'scale', 'timeline', 'position', 'settings'],
|
||||
controlsBottom: ['play', 'volume', 'scale', 'timeline', 'settings'],
|
||||
duration: result.data.duration,
|
||||
enableFind: false,
|
||||
enableFullscreen: true,
|
||||
enableKeyboard: true,
|
||||
|
@ -30,7 +31,7 @@ Ox.load('UI', {
|
|||
enableTimeline: true,
|
||||
enableVolume: true,
|
||||
externalControls: false,
|
||||
height: document.height,
|
||||
height: window.innerHeight,
|
||||
'in': options['in'],
|
||||
out: options.out,
|
||||
paused: options.paused,
|
||||
|
@ -43,7 +44,7 @@ Ox.load('UI', {
|
|||
timeline: '/' + options.item + '/' + 'timeline16p.png',
|
||||
title: result.data.title,
|
||||
video: videoOptions.video,
|
||||
width: document.width
|
||||
width: window.innerWidth
|
||||
})
|
||||
.bindEvent({
|
||||
playing: checkRange,
|
||||
|
|
Loading…
Reference in a new issue