Hello everyone,

Scriptaculous AutoCompleter is not able to work with a minChars 
property=0. But this could be quiet useful if you want to trigger 
autocompletion by pressing KEY_DOWN.

Change in Code would be simple (line 62):

     this.options.minChars     = this.options.minChars  || 1;

has to be changed to

     this.options.minChars   = Object.isNumber(this.options.minChars) ? 
this.options.minChars : 1;

What do you think?

Greetings

Frederic

-- 
Frederic Gaus                                 pgp-key: 93E6903C
fingerprint: 0C55 4517 CC1E 5F7F 9059  3535 AB54 D8E8 93E6 903C

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype: Core" group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to 
prototype-core-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to