To correct myself: > Search for this line: > > min: cfg && cfg.min ? Number(cfg.min) : null, > > And replace with this: > > min: cfg && cfg.min !== null ? Number(cfg.min) : null,
Should be: min: cfg && cfg.min !== undefined ? Number(cfg.min) : null, -- Choan <http://choangalvez.nom.es/> _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
