diff --git a/source/Ox.UI/js/Video/BlockVideoTimeline.js b/source/Ox.UI/js/Video/BlockVideoTimeline.js index 798767c3..3b90676e 100644 --- a/source/Ox.UI/js/Video/BlockVideoTimeline.js +++ b/source/Ox.UI/js/Video/BlockVideoTimeline.js @@ -215,7 +215,7 @@ Ox.BlockVideoTimeline = function(options, self) { self.$tooltip.options({ title: subtitle ? '' + Ox.highlight( - subtitle.text, self.options.find, 'OxHighlight' + subtitle.text, self.options.find, 'OxHighlight', true ).replace(/\n/g, '
') + '

' + Ox.formatDuration(subtitle['in'], 3) + ' - ' + Ox.formatDuration(subtitle['out'], 3) diff --git a/source/Ox.UI/js/Video/LargeVideoTimeline.js b/source/Ox.UI/js/Video/LargeVideoTimeline.js index 8de6e143..131cc27e 100644 --- a/source/Ox.UI/js/Video/LargeVideoTimeline.js +++ b/source/Ox.UI/js/Video/LargeVideoTimeline.js @@ -179,7 +179,7 @@ Ox.LargeVideoTimeline = function(options, self) { width: (((subtitle.out - subtitle['in']) * self.fps) - 2) + 'px' }) .html(Ox.highlight( - subtitle.text, self.options.find, 'OxHighlight' + subtitle.text, self.options.find, 'OxHighlight', true )) .appendTo(self.$timeline); });