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
After changing the event in verifier from keypress to keyup, the exercise works in firefox, but the registered characters are converted to upper case. The exact same thing happens in Exercise 42, both in firefox and chromium - the verifier uses keyup event in Exercise 42.
The sample answer for Exercise 40 doesn't work in firefox because of https://bugzilla.mozilla.org/show_bug.cgi?id=112379 .
The code uses String.fromCharCode(e.keyCode) where e is keypress event. Firefox uses charCode for events which generate characters.
The text was updated successfully, but these errors were encountered: