aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emccpre.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/emccpre.js b/emccpre.js
index 430aae4..38d7815 100644
--- a/emccpre.js
+++ b/emccpre.js
@@ -233,6 +233,12 @@ function initPuzzle() {
command(2);
};
+ // In IE, the canvas doesn't automatically gain focus on a mouse
+ // click, so make sure it does
+ onscreen_canvas.addEventListener("mousedown", function(event) {
+ onscreen_canvas.focus();
+ });
+
// In our dialog boxes, Return and Escape should be like pressing
// OK and Cancel respectively
document.addEventListener("keydown", function(event) {