blob: e23464b2f9d48c7ddde3ce6a0dd93702bbe48bd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
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())
}
|