summaryrefslogtreecommitdiffstats
path: root/core/src/jquery/ui-fixes.js
blob: fb5ce4d7ba8a80874fa6c69e93ca1964c6fb7b1f (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() {
	var ul = this.menu.element
	ul.outerWidth(this.element.outerWidth())
}