Skip to content

Commit 4028ac7

Browse files
committed
KeyboardSendsClicks.html: Small fixups
1 parent 8208fa6 commit 4028ac7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

KeyboardSendsClicks.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<html>
22
<script>
33
function clicked(e) {
4-
console.log(345);
54
this.style.backgroundColor="#" + Math.random().toString(16).slice(2, 8);
65
e.stopPropagation();
76
}
@@ -13,6 +12,10 @@
1312
}
1413

1514
function init() {
15+
adddiv();
16+
adddiv();
17+
adddiv();
18+
1619
keyStore = {};
1720
document.body.onmousemove = function mousemove(e) { lastMouse = e; };
1821
document.body.onkeydown = function keydown(e) {
@@ -39,9 +42,6 @@
3942
e.preventDefault();
4043
}
4144
};
42-
adddiv();
43-
adddiv();
44-
adddiv();
4545
}
4646
</script>
4747
<body onload=init();>

0 commit comments

Comments
 (0)