From a4daa10f53e9c6aa5a9b5641730fd7576ae6f6f8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Sat, 30 Jan 2010 16:38:51 +0000 Subject: [PATCH] Autocomplete: Turned off collision detection. Fixes #5114 - Autocomplete: Turn off collision detection for menu. --- ui/jquery.ui.autocomplete.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js index 0ac04d115..932485ebc 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -243,7 +243,8 @@ $.widget( "ui.autocomplete", { .position({ my: "left top", at: "left bottom", - of: this.element + of: this.element, + collision: "none" }) .data( "menu" ); if ( ul.width() <= this.element.width() ) { -- 2.39.5