From 380a4b45efeae550f229a06473a7f4e7a4efa2a4 Mon Sep 17 00:00:00 2001 From: jelveh Date: Mon, 16 Dec 2024 13:30:16 -0800 Subject: [PATCH] Add `user-scalable=no` to the desktop --- src/gui/src/initgui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/src/initgui.js b/src/gui/src/initgui.js index 5d8ea2fb5..77ee35f4a 100644 --- a/src/gui/src/initgui.js +++ b/src/gui/src/initgui.js @@ -192,7 +192,7 @@ window.initgui = async function(options){ // Appends a viewport meta tag to the head of the document, ensuring optimal display on mobile devices. // This tag sets the width of the viewport to the device width, and locks the zoom level to 1 (prevents user scaling). - $('head').append(``); + $('head').append(``); // GET query params provided window.url_query_params = new URLSearchParams(window.location.search);