1
0
Fork 0
forked from 0x2620/oxjs

trailing comma removal,

This commit is contained in:
j 2012-05-26 15:48:19 +00:00
commit 68d50978ba
44 changed files with 87 additions and 87 deletions

View file

@ -27,7 +27,7 @@ Ox.BlockVideoTimeline = function(options, self) {
.options(options || {})
.addClass('OxBlockVideoTimeline')
.css({
position: 'absolute',
position: 'absolute'
})
.bind({
mousedown: mousedown,
@ -120,7 +120,7 @@ Ox.BlockVideoTimeline = function(options, self) {
top: '2px',
width: Math.round(self.options.duration) + 'px',
height: '20px',
marginLeft: -i * self.options.width + 'px',
marginLeft: -i * self.options.width + 'px'
//background: 'rgba(255, 0, 0, 0.1)',
})
.appendTo(self.$lines[i]);