From 84f7c90fc82fa551f12122f0672775a5f7076933 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rn=20Zaefferer?= Date: Wed, 10 Feb 2010 15:09:19 +0000 Subject: [PATCH] Autocomplete: Fix for #5154 - cleanup --- ui/jquery.ui.autocomplete.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js index 13254ed02..f6450d00e 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -257,15 +257,12 @@ $.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; -- 2.39.5