VideoPlayer: fix loop while playing in to out; VideoEditPanel: add play in to out control
This commit is contained in:
parent
34a734e9f6
commit
19b9b14dfc
2 changed files with 2 additions and 2 deletions
|
@ -135,7 +135,7 @@ Ox.VideoEditPanel = function(options, self) {
|
||||||
self.$video = Ox.VideoPlayer({
|
self.$video = Ox.VideoPlayer({
|
||||||
controlsTop: ['fullscreen', 'space', 'open'],
|
controlsTop: ['fullscreen', 'space', 'open'],
|
||||||
controlsBottom: [
|
controlsBottom: [
|
||||||
'play', 'volume', 'scale', 'timeline',
|
'play', 'playInToOut', 'volume', 'scale', 'timeline',
|
||||||
'previous', 'next', 'loop', 'position', 'settings'
|
'previous', 'next', 'loop', 'position', 'settings'
|
||||||
],
|
],
|
||||||
enableKeyboard: true,
|
enableKeyboard: true,
|
||||||
|
|
|
@ -1878,7 +1878,7 @@ Ox.VideoPlayer = function(options, self) {
|
||||||
|| (self.options.playInToOut && self.options.position >= self.out)
|
|| (self.options.playInToOut && self.options.position >= self.out)
|
||||||
) {
|
) {
|
||||||
if (self.options.loop) {
|
if (self.options.loop) {
|
||||||
rewind();
|
setPosition(self.options['in']);
|
||||||
self.$video.play();
|
self.$video.play();
|
||||||
} else {
|
} else {
|
||||||
togglePaused();
|
togglePaused();
|
||||||
|
|
Loading…
Reference in a new issue