changelog.txt 716 B

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