exp/textinput: use mouseup for consistency

This commit is contained in:
Hajime Hoshi 2024-02-06 00:53:52 +09:00
parent 0160d40bfb
commit d7fc49355b

View File

@ -131,7 +131,7 @@ let handler = (e) => {
};
let body = window.document.body;
body.addEventListener("click", handler);
body.addEventListener("mouseup", handler);
body.addEventListener("touchend", handler);
body.addEventListener("keyup", handler);`)