Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Keypad value is not included. #9

Open
hao9601 opened this issue Nov 6, 2017 · 1 comment
Open

Keypad value is not included. #9

hao9601 opened this issue Nov 6, 2017 · 1 comment

Comments

@hao9601
Copy link

hao9601 commented Nov 6, 2017

Key Pad value is not included.

if (e.keyCode >= 96 && e.keyCode <= 105)
...

@hao9601
Copy link
Author

hao9601 commented Nov 6, 2017

The fix that I have in my code for now:

if (char.search(/[0-9\-]/) === 0) {
    cents = parseInt(cents + char);
} else if (e.keyCode === 8) {
    cents = parseInt(cents.toString().slice(0, -1)) || 0;
} else if (e.keyCode >= 96 && e.keyCode <= 105) {
    cents = parseInt(cents + '' + (e.keyCode - 96));
} else {
    return false;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant