You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 8, 2020. It is now read-only.
An issue I've found is when the first characters are optional, I have to fill them anyway for my mask to actually work.
<input ng-model="time" ui-mask="9?9?9:99" />
Filling it from right to left would make it possible to type 545 and it show up 5:45 instead of 545:__ as it is.
Additionally it would be perfect if I could type infinitely for it to mask only the end, something like
<input ng-model="time" ui-mask="9#9:99" />
so typing 113534 would show 1135:34
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
An issue I've found is when the first characters are optional, I have to fill them anyway for my mask to actually work.
<input ng-model="time" ui-mask="9?9?9:99" />
Filling it from right to left would make it possible to type
545
and it show up5:45
instead of545:__
as it is.Additionally it would be perfect if I could type infinitely for it to mask only the end, something like
<input ng-model="time" ui-mask="9#9:99" />
so typing
113534
would show1135:34
The text was updated successfully, but these errors were encountered: