forked from 0x2620/oxjs
trailing comma removal,
This commit is contained in:
parent
61e05f4f86
commit
68d50978ba
44 changed files with 87 additions and 87 deletions
|
|
@ -203,7 +203,7 @@ Ox.VideoTimelinePlayer = function(options, self) {
|
|||
self.$position = Ox.Element()
|
||||
.addClass('OxPosition')
|
||||
.css({
|
||||
width: self.positionWidth - 4 + 'px',
|
||||
width: self.positionWidth - 4 + 'px'
|
||||
})
|
||||
.html(formatPosition())
|
||||
.bind({
|
||||
|
|
@ -309,7 +309,7 @@ Ox.VideoTimelinePlayer = function(options, self) {
|
|||
left: 0,
|
||||
top: 0,
|
||||
width: self.videoWidth + 'px',
|
||||
height: self.tileHeight + 'px',
|
||||
height: self.tileHeight + 'px'
|
||||
})
|
||||
.appendTo(self.$frameBox);
|
||||
|
||||
|
|
@ -361,7 +361,7 @@ Ox.VideoTimelinePlayer = function(options, self) {
|
|||
left: 0,
|
||||
top: 0,
|
||||
width: self.videoWidth + 'px',
|
||||
height: self.tileHeight + 'px',
|
||||
height: self.tileHeight + 'px'
|
||||
})
|
||||
.appendTo(self.$videoBox);
|
||||
|
||||
|
|
@ -391,11 +391,11 @@ Ox.VideoTimelinePlayer = function(options, self) {
|
|||
self.$timeline.clone()
|
||||
.css({
|
||||
width: self.frame + self.videoWidth + 'px',
|
||||
marginLeft: -i * self.contentWidth + 'px',
|
||||
marginLeft: -i * self.contentWidth + 'px'
|
||||
}),
|
||||
self.$timeline.clone()
|
||||
.css({
|
||||
marginLeft: -i * self.contentWidth + self.videoWidth - 1 + 'px',
|
||||
marginLeft: -i * self.contentWidth + self.videoWidth - 1 + 'px'
|
||||
})
|
||||
];
|
||||
self.$lines[i]
|
||||
|
|
@ -591,7 +591,7 @@ Ox.VideoTimelinePlayer = function(options, self) {
|
|||
left: 0,
|
||||
top: self.margin / 2 + 'px',
|
||||
width: self.frames + 'px',
|
||||
height: self.tileHeight + 'px',
|
||||
height: self.tileHeight + 'px'
|
||||
//background: 'rgba(255, 0, 0, 0.5)'
|
||||
})
|
||||
.appendTo($timeline);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue