appendTo(that.$element) -> appendTo(that)
This commit is contained in:
parent
a6b0907cdc
commit
244591d57e
13 changed files with 37 additions and 37 deletions
|
|
@ -115,14 +115,14 @@ Ox.SmallVideoTimeline = function(options, self) {
|
|||
self.$positionMarker = $('<div>')
|
||||
.addClass('OxMarkerPlay' + (self.options.paused ? ' OxPaused' : ''))
|
||||
.append($('<div>').append($('<div>')))
|
||||
.appendTo(that.$element);
|
||||
.appendTo(that);
|
||||
} else {
|
||||
self.$positionMarker = $('<img>')
|
||||
.addClass('OxMarkerPosition')
|
||||
.attr({
|
||||
src: Ox.UI.getImageURL('markerPosition')
|
||||
})
|
||||
.appendTo(that.$element);
|
||||
.appendTo(that);
|
||||
}
|
||||
setPositionMarker();
|
||||
|
||||
|
|
@ -135,7 +135,7 @@ Ox.SmallVideoTimeline = function(options, self) {
|
|||
.attr({
|
||||
src: Ox.UI.getImageURL('marker' + titlecase)
|
||||
})
|
||||
.appendTo(that.$element);
|
||||
.appendTo(that);
|
||||
setPointMarker(point);
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue