r3378 committed - autocomplete: hide suggestions when deleting input and minLength isn't...

r3378 committed - autocomplete: hide suggestions when deleting input and minLength isn't...


Revision: 3378
Author: joern.zaefferer
Date: Thu Oct 22 11:44:09 2009
Log: autocomplete: hide suggestions when deleting input and minLength isn't
met anymore
http://code.google.com/p/jquery-ui/source/detail?r=3378
Modified:
/branches/dev/ui/jquery.ui.autocomplete.js
=======================================
--- /branches/dev/ui/jquery.ui.autocomplete.js    Wed Oct 21 00:11:21 2009
+++ /branches/dev/ui/jquery.ui.autocomplete.js    Thu Oct 22 11:44:09 2009
@@ -106,6 +106,8 @@
            if (result) {
                response(result);
            }
+        } else {
+            self.close();
        }
    },