forked from 0x2620/oxjs
appendTo(that.$element) -> appendTo(that)
This commit is contained in:
parent
a6b0907cdc
commit
244591d57e
13 changed files with 37 additions and 37 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue