diff --git a/build/js/ox.ui.js b/build/js/ox.ui.js index 7fc3f308..f82f791f 100644 --- a/build/js/ox.ui.js +++ b/build/js/ox.ui.js @@ -10817,7 +10817,7 @@ requires self.$tooltip = new Ox.Tooltip({ title: subtitle ? '' + - Ox.highlight(subtitle.text, self.options.find).replace(/\n/g, '
') + '

' + + Ox.highlight(subtitle.value, self.options.find).replace(/\n/g, '
') + '
' + Ox.formatDuration(subtitle['in'], 3) + ' - ' + Ox.formatDuration(subtitle['out'], 3) : Ox.formatDuration(position, 3) }) @@ -10955,7 +10955,7 @@ requires left: (v['in'] * self.fps) + 'px', width: (((v['out'] - v['in']) * self.fps) - 4) + 'px' }) - .html(Ox.highlight(v.text, self.options.find)) + .html(Ox.highlight(v.value, self.options.find)) .appendTo(self.$timeline) }); @@ -11233,7 +11233,7 @@ requires self.$tooltip = new Ox.Tooltip({ title: subtitle ? '' + - Ox.highlight(subtitle.text, self.options.find).replace(/\n/g, '
') + '

' + + Ox.highlight(subtitle.value, self.options.find).replace(/\n/g, '
') + '
' + Ox.formatDuration(subtitle['in'], 3) + ' - ' + Ox.formatDuration(subtitle['out'], 3) : Ox.formatDuration(position, 3) }) @@ -11977,7 +11977,7 @@ requires var subtitle = ''; $.each(self.options.subtitles, function(i, v) { if (v['in'] <= self.options.position && v['out'] > self.options.position) { - subtitle = v.text; + subtitle = v.value; return false; } });