diff --git a/source/Ox.UI/js/Video/AnnotationPanel.js b/source/Ox.UI/js/Video/AnnotationPanel.js index ec6ab29f..033af34b 100644 --- a/source/Ox.UI/js/Video/AnnotationPanel.js +++ b/source/Ox.UI/js/Video/AnnotationPanel.js @@ -100,7 +100,14 @@ Ox.AnnotationPanel = function(options, self) { self.$menubar = Ox.Bar({ size: 16 }) - .addClass('OxVideoPlayer'); + .addClass('OxVideoPlayer') + .bindEvent({ + doubleclick: function(e) { + if ($(e.target).is('.OxBar')) { + self.$folders.animate({scrollTop: 0}, 250); + } + } + }); self.$folders = Ox.Element().css({overflowY: 'scroll'}); self.$folder = [];