mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
exp/textinput: use mouseup for consistency
This commit is contained in:
parent
0160d40bfb
commit
d7fc49355b
@ -131,7 +131,7 @@ let handler = (e) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
let body = window.document.body;
|
let body = window.document.body;
|
||||||
body.addEventListener("click", handler);
|
body.addEventListener("mouseup", handler);
|
||||||
body.addEventListener("touchend", handler);
|
body.addEventListener("touchend", handler);
|
||||||
body.addEventListener("keyup", handler);`)
|
body.addEventListener("keyup", handler);`)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user