dont set widht to 0 for videos that are exactly one hour
This commit is contained in:
parent
94355eb792
commit
e443888eba
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ Ox.SmallVideoTimelineImage = function(options, self) {
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
left: (i * 3600) + 'px',
|
left: (i * 3600) + 'px',
|
||||||
top: self.timelineTop + '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'
|
height: '16px'
|
||||||
})
|
})
|
||||||
.appendTo(that);
|
.appendTo(that);
|
||||||
|
|
Loading…
Reference in a new issue