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

@ -87,21 +87,21 @@ Ox.Menu = function(options, self) {
that.$scrollbars = [];
that.$top = $('<div>')
.addClass('OxTop')
.appendTo(that.$element);
.appendTo(that);
that.$scrollbars.up = renderScrollbar('up')
.appendTo(that.$element);
.appendTo(that);
that.$container = $('<div>')
.addClass('OxContainer')
.appendTo(that.$element);
.appendTo(that);
that.$content = $('<table>')
.addClass('OxContent')
.appendTo(that.$container);
renderItems(self.options.items);
that.$scrollbars.down = renderScrollbar('down')
.appendTo(that.$element);
.appendTo(that);
that.$bottom = $('<div>')
.addClass('OxBottom')
.appendTo(that.$element);
.appendTo(that);
function click(event) {
var item,