forked from 0x2620/pandora
in embed player, use playInToOut option
This commit is contained in:
parent
cabc68681a
commit
ec43a7c194
1 changed files with 3 additions and 18 deletions
|
@ -42,6 +42,7 @@ Ox.load('UI', {
|
||||||
height: window.innerHeight,
|
height: window.innerHeight,
|
||||||
invertHighlight: true,
|
invertHighlight: true,
|
||||||
paused: options.paused,
|
paused: options.paused,
|
||||||
|
playInToOut: true,
|
||||||
poster: '/' + options.item + '/' + '96p' + data.posterFrame +'.jpg',
|
poster: '/' + options.item + '/' + '96p' + data.posterFrame +'.jpg',
|
||||||
resolution: pandora.user.ui.videoResolution,
|
resolution: pandora.user.ui.videoResolution,
|
||||||
showMarkers: false,
|
showMarkers: false,
|
||||||
|
@ -58,7 +59,7 @@ Ox.load('UI', {
|
||||||
} : {}, options.out ? {
|
} : {}, options.out ? {
|
||||||
out: options.out
|
out: options.out
|
||||||
} : {}))
|
} : {}))
|
||||||
.bindEvent(Ox.extend({
|
.bindEvent({
|
||||||
open: function() {
|
open: function() {
|
||||||
pandora.$player.options({paused: true});
|
pandora.$player.options({paused: true});
|
||||||
var url = document.location.protocol
|
var url = document.location.protocol
|
||||||
|
@ -73,10 +74,7 @@ Ox.load('UI', {
|
||||||
fullscreen: function(data) {
|
fullscreen: function(data) {
|
||||||
Ox.Fullscreen.toggle();
|
Ox.Fullscreen.toggle();
|
||||||
}
|
}
|
||||||
}, options['in'] || options.out ? {
|
})
|
||||||
playing: checkRange,
|
|
||||||
position: checkRange
|
|
||||||
} : {}))
|
|
||||||
);
|
);
|
||||||
Ox.UI.hideLoadingScreen();
|
Ox.UI.hideLoadingScreen();
|
||||||
});
|
});
|
||||||
|
@ -131,19 +129,6 @@ Ox.load('UI', {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
function checkRange(data) {
|
|
||||||
if (
|
|
||||||
data.position < options['in'] - 0.04
|
|
||||||
|| data.position > options.out
|
|
||||||
) {
|
|
||||||
if (!pandora.$player.options('paused')) {
|
|
||||||
pandora.$player.togglePaused();
|
|
||||||
}
|
|
||||||
pandora.$player.options({
|
|
||||||
position: options['in']
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ox.extend(pandora.user, {
|
Ox.extend(pandora.user, {
|
||||||
videoFormat: Ox.UI.getVideoFormat(pandora.site.video.formats)
|
videoFormat: Ox.UI.getVideoFormat(pandora.site.video.formats)
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue