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

@ -151,13 +151,13 @@ Ox.Editable = function(options, self) {
},
submit: submit
})
.appendTo(that.$element);
.appendTo(that);
self.$input.find('input').css(self.css);
self.$test = self.$value.$element.clone()
.css(Ox.extend({display: 'inline-block'}, self.css))
.html(formatTestValue())
.css({background: 'rgb(192, 192, 192)'})
.appendTo(that.$element);
.appendTo(that);
}
self.minWidth = 8;
self.maxWidth = that.parent().width();