From 768d4fe1600316ab2b18c0f0f9d70209b5b49719 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Mon, 7 Oct 2013 20:46:12 +0000 Subject: [PATCH] dont seek to end of file after playInToOut in editor view, fixes #1858 --- source/Ox.UI/js/Video/VideoPlayer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Ox.UI/js/Video/VideoPlayer.js b/source/Ox.UI/js/Video/VideoPlayer.js index 638f3627..fff04263 100644 --- a/source/Ox.UI/js/Video/VideoPlayer.js +++ b/source/Ox.UI/js/Video/VideoPlayer.js @@ -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'); }