mirror of
https://github.com/devbridge/jQuery-Autocomplete.git
synced 2024-11-25 22:27:39 +00:00
Use outerHeight instead of innerHeight
This commit is contained in:
parent
948ce9cdb7
commit
930393c7f7
@ -88,7 +88,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
if (!this.options.width) {
|
if (!this.options.width) {
|
||||||
this.options.width = this.el.width();
|
this.options.width = this.el.outerWidth();
|
||||||
}
|
}
|
||||||
|
|
||||||
this.mainContainerId = 'AutocompleteContainter_' + uid;
|
this.mainContainerId = 'AutocompleteContainter_' + uid;
|
||||||
@ -144,7 +144,7 @@
|
|||||||
|
|
||||||
fixPosition: function () {
|
fixPosition: function () {
|
||||||
var offset = this.el.offset();
|
var offset = this.el.offset();
|
||||||
$('#' + this.mainContainerId).css({ top: (offset.top + this.el.innerHeight()) + 'px', left: offset.left + 'px' });
|
$('#' + this.mainContainerId).css({ top: (offset.top + this.el.outerHeight()) + 'px', left: offset.left + 'px' });
|
||||||
},
|
},
|
||||||
|
|
||||||
enableKillerFn: function () {
|
enableKillerFn: function () {
|
||||||
|
Loading…
Reference in New Issue
Block a user