aboutsummaryrefslogtreecommitdiffstats
path: root/core/src/jquery/ui-fixes.js
blob: d70c5579f947fce9030ed700c8d92b7ef8efdfb6 (plain)
1
2
3
4
5
6
7
8
import $ from 'jquery'

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