aboutsummaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2016-11-25 16:42:53 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2016-11-25 16:44:51 +0100
commit9528045178b53fbf3b97d344dda1fd448b4989cf (patch)
tree9d7907c9ade19f793d1608e66b2a31d33648dc18 /core/js
parent47646794b9426f40c12719d78c5a92a71570b4b2 (diff)
downloadnextcloud-server-9528045178b53fbf3b97d344dda1fd448b4989cf.tar.gz
nextcloud-server-9528045178b53fbf3b97d344dda1fd448b4989cf.zip
Add jquery ui fixes js file
+ fix autocomplete width (fix #2324) Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core/js')
-rw-r--r--core/js/jquery-ui-fixes.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/js/jquery-ui-fixes.js b/core/js/jquery-ui-fixes.js
new file mode 100644
index 00000000000..9ccaa38cc47
--- /dev/null
+++ b/core/js/jquery-ui-fixes.js
@@ -0,0 +1,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());
+}