input-masking icon indicating copy to clipboard operation
input-masking copied to clipboard

Framework agnostic accessible input masking library

Results 14 input-masking issues
Sort by recently updated
recently updated
newest added

Hi, i'm trying to set a value to a input type tel and it place the value but its not formatted, do i have to do something?, i already try...

There's an error when plugin is inited second time as: ```js new InputMask(); ``` Bypass: ```js new InputMask({ masked: ".masked" }); ``` but source should be edited as here https://github.com/estelle/input-masking/pull/8

The placeholder text should pass WCAG color contrast requirements (accessibility), especially since it's a required format. The pink (#ffc2cd) fails color contrast with a ratio of Contrast Ratio: 1.52:1; the...

This is what happens when you narrow the screen on your example: ![image](https://cloud.githubusercontent.com/assets/609929/18322946/26ece4ac-74ea-11e6-97d0-50649dab5109.png) I was able to fix it with this: ``` .shell { display: inline-block; } ``` And tweaking...