diff --git a/source/Ox.UI/js/Video/SmallVideoTimelineImage.js b/source/Ox.UI/js/Video/SmallVideoTimelineImage.js index 2c486496..355e5a60 100644 --- a/source/Ox.UI/js/Video/SmallVideoTimelineImage.js +++ b/source/Ox.UI/js/Video/SmallVideoTimelineImage.js @@ -108,7 +108,7 @@ Ox.SmallVideoTimelineImage = function(options, self) { position: 'absolute', left: (i * 3600) + 'px', top: self.timelineTop + 'px', - width: (i == self.images - 1 ? self.imageWidth % 3600 : 3600) + 'px', + width: (i == self.images - 1 ? self.imageWidth % 3600 || 3600 : 3600) + 'px', height: '16px' }) .appendTo(that);