From e002e2a566616206b8f013230d1f295b0b54628c Mon Sep 17 00:00:00 2001 From: rolux Date: Mon, 11 Feb 2013 11:36:24 +0530 Subject: [PATCH] fix video preview tooltip layout --- source/Ox.UI/js/Video/VideoPreview.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/Ox.UI/js/Video/VideoPreview.js b/source/Ox.UI/js/Video/VideoPreview.js index df025562..061a6e80 100644 --- a/source/Ox.UI/js/Video/VideoPreview.js +++ b/source/Ox.UI/js/Video/VideoPreview.js @@ -75,8 +75,10 @@ Ox.VideoPreview = function(options, self) { self.timeout = setTimeout(function() { self.$frame.attr({src: self.options.getFrame(position)}); }, 250); - return (self.options.tooltip ? self.options.tooltip + '
' : '') - + Ox.formatDuration(position, 2); + return '
' : '') + + Ox.formatDuration(position, 2) + + '
'; } }) .addClass('OxInterface')