1
0
Fork 0
forked from 0x2620/oxjs

merging changes

This commit is contained in:
rlx 2011-08-06 17:41:01 +00:00
commit 8e468ced0b
7 changed files with 31 additions and 14 deletions

View file

@ -162,9 +162,9 @@ Ox.LargeTimeline = function(options, self) {
if (!self.$tiles[v]) {
self.$tiles[v] = $('<img>')
.attr({
src: '/' + self.options.videoId + '/timelines/' + (
src: '/' + self.options.videoId + '/' + (
self.options.style == 'default' ? 'timeline' : self.options.style
) + '.64.' + v + '.png'
) + '64p' + v + '.png'
})
.css({
left: (v * self.tileWidth) + 'px'

View file

@ -56,7 +56,7 @@ Ox.SmallTimeline = function(options, self) {
self.$line = $('<img>')
.addClass('OxTimelineSmallImage')
.attr({
src: '/' + self.options.videoId + '/timelines/timeline.16.0.png'
src: '/' + self.options.videoId + '/timeline16.png'
})
.css({
position: 'absolute',