diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-01-30 16:38:51 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-01-30 16:38:51 +0000 |
commit | a4daa10f53e9c6aa5a9b5641730fd7576ae6f6f8 (patch) | |
tree | 0191a104e18bfdab46d0fd49fe142fe4cbf12f89 | |
parent | 58a3a99e1e7ed9be36761baaaac3996ed645ea84 (diff) | |
download | jquery-ui-a4daa10f53e9c6aa5a9b5641730fd7576ae6f6f8.tar.gz jquery-ui-a4daa10f53e9c6aa5a9b5641730fd7576ae6f6f8.zip |
Autocomplete: Turned off collision detection.
Fixes #5114 - Autocomplete: Turn off collision detection for menu.
-rw-r--r-- | ui/jquery.ui.autocomplete.js | 3 |
1 files changed, 2 insertions, 1 deletions
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() ) { |