From c70271573a1edc9afda1a62ea6a5758e70f64e30 Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Wed, 18 Apr 2012 09:30:49 +0000 Subject: [PATCH] in timeline view, react to selecting an annotation --- source/Ox.UI/js/Video/Ox.VideoTimelinePlayer.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/Ox.UI/js/Video/Ox.VideoTimelinePlayer.js b/source/Ox.UI/js/Video/Ox.VideoTimelinePlayer.js index c111cb67..2af4e666 100644 --- a/source/Ox.UI/js/Video/Ox.VideoTimelinePlayer.js +++ b/source/Ox.UI/js/Video/Ox.VideoTimelinePlayer.js @@ -717,6 +717,8 @@ Ox.VideoTimelinePlayer = function(options, self) { self.setOption = function(key, value) { if (key == 'height') { setHeight(); + } else if (key == 'position') { + setPosition(); } else if (key == 'width') { setWidth(); }