candreoliveira / ngMask

Best Angular mask alternative! No jQuery, pure JS. About ~6kb!
http://candreoliveira.github.io/#/ngMask
ISC License
419 stars 171 forks source link

"value.replace is not a function" error with numeric view model values #42

Open ldeavila opened 9 years ago

ldeavila commented 9 years ago

Issue: If the value of the input's ng-model is numeric (phone is stored and coming back as a number from db), a "value.replace is not a function" error is thrown in the removeDivisors function.

Quick Resolution: Add the following line at the top removeDivisors(): value = typeof value === 'String'? value: value.toString();

ldeavila commented 9 years ago

Created pull-request #43