diff --git a/source/Ox.UI/js/Video/VideoEditor.js b/source/Ox.UI/js/Video/VideoEditor.js index 6caee7d0..6ef43c14 100644 --- a/source/Ox.UI/js/Video/VideoEditor.js +++ b/source/Ox.UI/js/Video/VideoEditor.js @@ -441,7 +441,14 @@ Ox.VideoEditor = function(options, self) { self.$menubar = Ox.Bar({ size: 16 }) - .addClass('OxVideoPlayer'); + .addClass('OxVideoPlayer') + .bindEvent({ + doubleclick: function(e) { + if ($(e.target).is('.OxBar')) { + self.$editor.animate({scrollTop: 0}, 250); + } + } + }); self.resolutions = []; Ox.forEach(self.options.video, function(url, resolution) {