summaryrefslogtreecommitdiffstats
path: root/core/js/jquery-ui-fixes.js
blob: 39f6d7a354ef9177afe75bd3ef0c7188e71b2285 (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());
};