From 70f3b8f9652f827b08920858e61b67f24d8402b3 Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Fri, 8 Nov 2013 19:16:08 +0000 Subject: [PATCH] fix #1925 (large timeline not functional) --- source/Ox.UI/js/Video/VideoPlayerPanel.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/Ox.UI/js/Video/VideoPlayerPanel.js b/source/Ox.UI/js/Video/VideoPlayerPanel.js index 3127fb53..eb037b58 100644 --- a/source/Ox.UI/js/Video/VideoPlayerPanel.js +++ b/source/Ox.UI/js/Video/VideoPlayerPanel.js @@ -432,7 +432,8 @@ Ox.VideoPlayerPanel = function(options, self) { self.$annotationPanel.options({position: self.options.position}); } - function dragendTimeline() { + function dragendTimeline(data) { + dragTimeline(data); that.triggerEvent('position', {position: self.options.position}); }