We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f99c26a commit 46b2588Copy full SHA for 46b2588
1 file changed
2-ui/3-event-details/9-keyboard-events/keyboard-dump.view/script.js
@@ -5,7 +5,7 @@ var lastTime = Date.now();
5
function handle(e) {
6
if (form.elements[e.type + 'Ignore'].checked) return;
7
8
- var text = event.type +
+ var text = e.type +
9
' keyCode=' + e.keyCode +
10
' which=' + e.which +
11
' charCode=' + e.charCode +
@@ -25,4 +25,4 @@ function handle(e) {
25
if (form.elements[e.type + 'Stop'].checked) {
26
e.preventDefault();
27
}
28
-}
+}
0 commit comments