changelog.txt 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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
  25. version 0.3.3
  26. - added insertMode option
  27. version 0.3.5
  28. - added remove option
  29. version 0.3.6
  30. - added escape special chars in mask
  31. version 0.3.7
  32. - added clearIncomplete option - clear the incomplete input on blur
  33. version 0.3.9
  34. - added oncleared option - executes when the mask is cleared
  35. version 0.4.0
  36. - add aliases option