UNPKG

easyvn

Version:

Modular visual novel engine for the web

15 lines (14 loc) 339 B
export function waitClick() { return new Promise((resolve) => { const textbox = document.getElementById("textbox"); if (textbox) { textbox.onclick = () => { textbox.onclick = null; resolve(); }; } else { resolve(); } }); }