[Autocomplete] bug with max in 1.6rc2

[Autocomplete] bug with max in 1.6rc2


Would post a ticket but the trac is down....
in the _init method
22: max: !this.options.scroll ? 10 : 150,
overrides whatever the developer has supplied for the "max" option.
something along the lines of this works.
max: !this.options.max ? (!this.options.scroll ? 10 : 150) :
this.options.max.
However I'm inclined to think the inner ternary should be moved down
to $.Autocomplete.defaults....