krz/skunky-art

Alternative privacy frontend for DeviantArt.

clone: git clone https://gitbay.org/krz/skunky-art.git

b31b5971d8744bf94ef0d30f2be0e17c08b93988

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2026-07-15T16:00:25Z

fix: use commas in the viewport meta content

The viewport directives were separated with a semicolon, which browsers reject:
"';' is not a valid key-value pair separator". Drop the duplicated trailing
user-scalable directive that the semicolon introduced.
 static/html/head.htm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/static/html/head.htm b/static/html/head.htm
index aa36c73..da99c07 100755
--- a/static/html/head.htm
+++ b/static/html/head.htm
@@ -21,6 +21,6 @@
     <meta name="referrer" content="no-referrer" />
     <link rel="stylesheet" href="{{.BasePath}}stylesheet">
     <link rel="icon" type="image/x-icon" href="{{.BasePath}}favicon.ico">
-    <meta name="viewport" content="width=device-width, height=device-height, initial-scale=0.4, user-scalable=no; user-scalable=0"/>
+    <meta name="viewport" content="width=device-width, height=device-height, initial-scale=0.4, user-scalable=no"/>
 </head>
 {{end}}
\ No newline at end of file