| 1234567891011121314151617181920212223242526272829303132333435 |
- jquery.inputmask changelog
- ==========================
- version 0.1.9
- - allow re-masking with another mask, when their is already a mask in place.
- ex.
- $(input).inputmask('d/m/y');
- ... do some stuff ...
- $(input).inputmask('999999999999'); // => input mask changes to the new mask and applies it to it's value
- version 0.2.0
- - make entering the textbox via mouseclick or via tab key behave like a normal input
- version 0.2.1
- - avoid needless checking of the value
- version 0.2.2
- - update doubleclick behavior
- version 0.2.3
- - ui.datepicker fix
- version 0.2.5
- - (simple) optional masks ex: $(selector).inputmask('9999[aaaa]9999');
- version 0.2.8a
- - removed optional mask implementation
|