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
Whenever I paste a credit card number, I am never able to flip the card over. The only work around is to go back to the card number, delete any character, and then enter the character again. After pressing a key, I am then able to turn the card over to the other side to be able to fill in the CVC.
I think you are listening for a keypress, keyup or keydown. I think you need to add a listener for the 'paste' event.
The text was updated successfully, but these errors were encountered:
I would give you a pull request, but I'm on a foreign machine right now. I think I've identified the code in question. Take a look at line 239 this._inputViews.number.bind("change valueChanged", function(e, input) {
I think you should add 'paste' to that bind command.
Awesome work on this project, BTW! I love it and use it.
Whenever I paste a credit card number, I am never able to flip the card over. The only work around is to go back to the card number, delete any character, and then enter the character again. After pressing a key, I am then able to turn the card over to the other side to be able to fill in the CVC.
I think you are listening for a keypress, keyup or keydown. I think you need to add a listener for the 'paste' event.
The text was updated successfully, but these errors were encountered: