2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2024-11-09 14:50:57 +00:00

Fix width of auto size

This commit is contained in:
Tobias Krauthoff 2017-02-24 10:39:54 +01:00
parent 0ba374d7e3
commit b02d873028

View File

@ -338,7 +338,7 @@
}
if (that.options.width === 'auto') {
styles.width = that.el.outerWidth() + 'px';
styles.width = 'auto';
}
$container.css(styles);