cesarrew / ng2-currency-mask

A very simple currency mask directive that allows using a number attribute with the ngModel.
MIT License
235 stars 116 forks source link

pasting into mobile android devices only picks up the first number #157

Open seizeshia opened 3 years ago

seizeshia commented 3 years ago

was able to fix issue by updating handle input: handleInput(event) { if (this.isChromeAndroid()) { event.inputType !== 'insertFromPaste' && this.inputHandler.handleInput(event); } }