diff --git a/source/Ox.UI/js/Video/LargeVideoTimeline.js b/source/Ox.UI/js/Video/LargeVideoTimeline.js index 9bd201e6..f012a469 100644 --- a/source/Ox.UI/js/Video/LargeVideoTimeline.js +++ b/source/Ox.UI/js/Video/LargeVideoTimeline.js @@ -97,10 +97,10 @@ Ox.LargeVideoTimeline = function(options, self) { self.options.cuts.forEach(function(v, i) { self.$cuts[i] = $('') .addClass('OxCut') - .attr({src: Ox.UI.getImageURL('markerCut')}) .css({left: (v * self.fps) + 'px'}) .appendTo(self.$timeline); }); + self.$timeline.find('.OxCut').attr({src: Ox.UI.getImageURL('markerCut')}); self.$markerPosition = $('') .addClass('OxMarkerPosition')