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
Seems the case in closing the page or other conditions. Can be fixed with
var code = null;
if (e.keyCode) code = e.keyCode;
else if (e.which) code = e.which;
if (code) {
var character = String.fromCharCode(code).toLowerCase();