From 5452aad555218a7cacb2fe6552eb882fae8d4202 Mon Sep 17 00:00:00 2001 From: Johnathon Selstad Date: Mon, 6 Jan 2025 15:25:03 -0800 Subject: [PATCH] Prevent weird default browser gestures --- demos/web-editor/web/src/index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/demos/web-editor/web/src/index.html b/demos/web-editor/web/src/index.html index ee6db76c..450359bf 100644 --- a/demos/web-editor/web/src/index.html +++ b/demos/web-editor/web/src/index.html @@ -26,6 +26,9 @@ max-height: 512px; outline: 1px solid #bbb; margin-bottom: 12px; + user-select: none; + pointer-events: none; + touch-action: none; } span#status { display: block;