dont seek to end of file after playInToOut in editor view, fixes #1858
This commit is contained in:
parent
ab765a6f70
commit
768d4fe160
1 changed files with 1 additions and 1 deletions
|
@ -1901,7 +1901,7 @@ Ox.VideoPlayer = function(options, self) {
|
|||
if (self.options.rewind) {
|
||||
setTimeout(rewind, 250);
|
||||
} else {
|
||||
setPosition(self.playInToOut ? self.options.out : self.out/*, 'video'*/);
|
||||
setPosition(self.options.out ? self.options.out : self.out/*, 'video'*/);
|
||||
}
|
||||
that.triggerEvent('ended');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue