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

@ -285,7 +285,7 @@ Ox.Input = function(options, self) {
.blur(blur)
.change(change)
.focus(focus)
.appendTo(that.$element);
.appendTo(that);
if (self.options.type == 'textarea') {
Ox.Log('Form', 'TEXTAREA', self.options.width, self.options.height, '...', that.css('width'), that.css('height'), '...', self.$input.css('width'), self.$input.css('height'), '...', self.$input.css('border'))
@ -339,7 +339,7 @@ Ox.Input = function(options, self) {
})
.val(self.options.placeholder)
.focus(focus)
.appendTo(that.$element);
.appendTo(that);
}
if (self.options.autocomplete && self.options.autocompleteSelect) {