Removed dumb fix

This commit is contained in:
FlamedDogo99 2024-06-15 19:51:09 -06:00
parent 60fe827c13
commit bd26c5d2db

View File

@ -65,14 +65,8 @@ Object.defineProperty(EventTarget.prototype, "addEventListener", {
} }
return fn.apply(this, args); return fn.apply(this, args);
}, ...rest); }, ...rest);
} else if (type == 'blur' || type == 'mouseleave') {
_addEventListener.call(this, type, function(...args) {
return;
}, ...rest);
} else { } else {
_addEventListener.call(this, type, function(...args) { _addEventListener.call(this, type, fn, ...rest);
return fn.apply(this, args);
}, ...rest);
} }
} }
}); });
@ -501,7 +495,7 @@ function insertCanvasElements() {
document.body.appendChild(pauseButton); document.body.appendChild(pauseButton);
let chatButton = createTouchButton("chatButton", "inGame"); let chatButton = createTouchButton("chatButton", "inGame");
chatButton.style.cssText = "top: 0vh; margin: auto; left: 0vh; right: 16vh; width: 8vh; height: 8vh;" chatButton.style.cssText = "top: 0vh; margin: auto; left: 0vh; right: 16vh; width: 8vh; height: 8vh;"
chatButton.addEventListener("touchstart", function(e){ // Trying to figure out why the input isn't focusing chatButton.addEventListener("touchstart", function(e){ // Trying to figure out why the input isn't focusing
canvas.dispatchEvent(new Event("focus", { canvas.dispatchEvent(new Event("focus", {
returnValue: true, returnValue: true,
srcElement: canvas, srcElement: canvas,