summaryrefslogtreecommitdiff
path: root/web/web_dom.c
diff options
context:
space:
mode:
Diffstat (limited to 'web/web_dom.c')
-rw-r--r--web/web_dom.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/web/web_dom.c b/web/web_dom.c
index cff0459..6aa50ed 100644
--- a/web/web_dom.c
+++ b/web/web_dom.c
@@ -149,3 +149,8 @@ inline void dom_scroll_to_bottom(char *sel)
{
EM_ASM({elemScrollToBottom($0)}, sel);
}
+
+inline void dom_enable_exit_dialogue(bool enable)
+{
+ EM_ASM({enableExitDialogue($0)}, enable);
+}