summaryrefslogtreecommitdiffstats
path: root/core/js/jquery-ui-fixes.js
blob: 9ccaa38cc4764d3c74b326100af6cfb8f533b12b (plain)
1
2
3
4
5
6
7
8
// Various jquery fixes

// Set autocomplete width the same as the related input
// See http://stackoverflow.com/a/11845718
jQuery.ui.autocomplete.prototype._resizeMenu = function () {
	var ul = this.menu.element;
	ul.outerWidth(this.element.outerWidth());
}