mirror of
https://github.com/FlamedDogo99/EaglerMobile.git
synced 2024-11-21 11:36:05 -08:00
Fixed error for window.lastKey
This commit is contained in:
parent
4c5f3ada39
commit
e382e2c00c
|
@ -391,8 +391,10 @@ function insertCanvasElements() {
|
||||||
if(!(e.key && e.keyCode && e.which) && !window.keyboardFix) {
|
if(!(e.key && e.keyCode && e.which) && !window.keyboardFix) {
|
||||||
console.warn("Switching from keydown to input events due to invalid KeyboardEvent. Some functionality will be lost.")
|
console.warn("Switching from keydown to input events due to invalid KeyboardEvent. Some functionality will be lost.")
|
||||||
window.keyboardFix = true;
|
window.keyboardFix = true;
|
||||||
keyEvent(window.lastKey, "keydown")
|
if(window.lastKey) {
|
||||||
keyEvent(window.lastKey, "keyup")
|
keyEvent(window.lastKey, "keydown")
|
||||||
|
keyEvent(window.lastKey, "keyup")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}, false);
|
}, false);
|
||||||
document.body.appendChild(hiddenInput);
|
document.body.appendChild(hiddenInput);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user