1
0
Fork 0
forked from 0x2620/oxjs

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

@ -157,7 +157,7 @@ Ox.VideoElement = function(options, self) {
autoplay: 'autoplay'
} : {}))
.hide()
.appendTo(that.$element);
.appendTo(that);
});
item.videos = item.$videos.map(function($video) {
return $video[0];
@ -168,7 +168,7 @@ Ox.VideoElement = function(options, self) {
background: 'rgb(0, 0, 0)',
opacity: 0
})
.appendTo(that.$element);
.appendTo(that);
return item;
}