dont seek to end of file after playInToOut in editor view, fixes #1858

This commit is contained in:
j 2013-10-07 20:46:12 +00:00
parent ab765a6f70
commit 768d4fe160

View file

@ -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');
}