Closed jgallen23 closed 10 years ago
lets move types to:
$.declare('mask', { defaults: { types: { ssn: {} } } });
that way they can be extended and changed with either $().mask({ types: }) or $.fn.mask.defaults.types.blah = {};
$().mask({ types: })
$.fn.mask.defaults.types.blah = {};
Tried default.types but it doesn't look like fidel does a deep extend so it removes the other defaults.
So for now it's just defaults.ssn, etc
K
lets move types to:
that way they can be extended and changed with either
$().mask({ types: })
or$.fn.mask.defaults.types.blah = {};