From 767af39f7f415e984cbac75dd5b59bcd7f52f782 Mon Sep 17 00:00:00 2001 From: Pierre-Henri Ausseil Date: Sun, 26 Aug 2012 17:09:39 -0400 Subject: [PATCH] Autocomplete: Fixed an invisible character tht lead to a failure of the function. --- ui/jquery.ui.autocomplete.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js index 617aa9c70..da10d82c5 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -154,7 +154,7 @@ $.widget( "ui.autocomplete", { break; } }, - input: function( event ) { + input: function( event ) { if ( suppressInput ) { suppressInput = false; event.preventDefault(); -- 2.39.5