changelog.txt 834 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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
  21. version 0.2.8b
  22. - added base implementation of numeric inputmask
  23. version 0.3.1
  24. - added clearMaskOnLostFocus option