[HTML5] Editor: ensure canvas focus when switching tabs.

(cherry picked from commit b148ea2a64)
This commit is contained in:
Fabio Alessandrelli
2021-02-11 13:17:08 +01:00
committed by Rémi Verschelde
parent adb93d7120
commit 5abe08f484
+4
View File
@@ -284,6 +284,10 @@
tabs.forEach(function (elem) {
if (elem.id == 'tab-' + name) {
elem.style.display = 'block';
if (name == 'editor' || name == 'game') {
const canvas = document.getElementById(name + '-canvas');
canvas.focus();
}
} else {
elem.style.display = 'none';
}