From 5f807a3ad4b4f75bfcbe7839cf12679c7b950955 Mon Sep 17 00:00:00 2001 From: rolux Date: Fri, 8 Nov 2013 20:26:41 +0100 Subject: [PATCH] fix #1925 (large timeline not functional) --- source/Ox.UI/js/Video/VideoEditPanel.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/Ox.UI/js/Video/VideoEditPanel.js b/source/Ox.UI/js/Video/VideoEditPanel.js index 24acab5a..56f09b96 100644 --- a/source/Ox.UI/js/Video/VideoEditPanel.js +++ b/source/Ox.UI/js/Video/VideoEditPanel.js @@ -372,7 +372,8 @@ Ox.VideoEditPanel = function(options, self) { self.$clipPanel.options({position: self.options.position}); } - function dragendTimeline() { + function dragendTimeline(data) { + dragTimeline(data); that.triggerEvent('position', {position: self.options.position}); }