From 63f06c984d1138584101ab0cbd687b51a66094b0 Mon Sep 17 00:00:00 2001 From: rolux Date: Fri, 17 Jan 2014 11:37:27 +0000 Subject: [PATCH] video player panel: fix go to in/out --- source/Ox.UI/js/Video/VideoPlayerPanel.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/Ox.UI/js/Video/VideoPlayerPanel.js b/source/Ox.UI/js/Video/VideoPlayerPanel.js index eb037b58..f30838e9 100644 --- a/source/Ox.UI/js/Video/VideoPlayerPanel.js +++ b/source/Ox.UI/js/Video/VideoPlayerPanel.js @@ -472,6 +472,10 @@ Ox.VideoPlayerPanel = function(options, self) { * self.options.annotationsSize - 16 - 1; } + function goToPoint(point) { + setPosition(self.options[point]); + } + function playInToOut() { self.$video.playInToOut(); }