imaskjs icon indicating copy to clipboard operation
imaskjs copied to clipboard

padFractionalZeros don't work on IE11

Open infabo opened this issue 3 years ago • 0 comments

Given following:

{
          mask: '€ num',
          blocks: {
            num: {
              mask: Number,
              padFractionalZeros: true
            },
          }

IE11 won't pad.

You enter 45,:

  • expected: 45,00
  • actual: 45,

You enter 45:

  • expected: 45,00
  • actual: 45

infabo avatar Feb 18 '21 08:02 infabo