From 3875cd33b739b9908fe51eaa4f0b4b939e700e10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Zaefferer?= Date: Wed, 10 Feb 2010 15:05:35 +0000 Subject: [PATCH] Autocomplete: Fix for #5154 --- ui/jquery.ui.autocomplete.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js index 78ac1f8b5..45abb17b9 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -240,6 +240,7 @@ $.widget( "ui.autocomplete", { $.each( items, function( index, item ) { self._renderItem( ul, item ); }); + this.menu.deactivate(); this.menu.refresh(); this.menu.element.show(); if ( ul.width() <= this.element.width() ) { @@ -255,12 +256,15 @@ $.widget( "ui.autocomplete", { }, _move: function( direction, event ) { + console.log("move " + direction + " with event " + event) if ( !this.menu.element.is(":visible") ) { + console.log("move, menu not visible") this.search( null, event ); return; } if ( this.menu.first() && /^previous/.test(direction) || this.menu.last() && /^next/.test(direction) ) { + console.log("move, first or last") this.element.val( this.term ); this.menu.deactivate(); return;