appendTo(that.$element) -> appendTo(that)

This commit is contained in:
rolux 2012-06-26 18:21:39 +02:00
commit 244591d57e
13 changed files with 37 additions and 37 deletions

View file

@ -125,7 +125,7 @@ Ox.SmallVideoTimelineImage = function(options, self) {
width: self.options.width + 'px',
height: self.imageHeight + 'px'
})
.appendTo(that.$element);
.appendTo(that);
self.$results = $('<img>')
.attr({
@ -137,7 +137,7 @@ Ox.SmallVideoTimelineImage = function(options, self) {
width: self.options.width + 'px',
height: self.imageHeight + 'px'
})
.appendTo(that.$element);
.appendTo(that);
self.$selection = $('<img>')
.attr({
@ -149,7 +149,7 @@ Ox.SmallVideoTimelineImage = function(options, self) {
width: self.options.width + 'px',
height: self.imageHeight + 'px'
})
.appendTo(that.$element);
.appendTo(that);
function getImageURL(image, callback) {
var width = image == 'results' || image == 'selection'