aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-07-15 11:00:25 -0500
committerChristian Cleberg <[email protected]>2026-07-15 11:00:25 -0500
commitb31b5971d8744bf94ef0d30f2be0e17c08b93988 (patch)
tree96cafde6802834da2ce314a3e49d0cb6d17d2204
parent83d9cd0b7a3e0ec6beb5c889102211567a6db03f (diff)
downloadskunky-art-b31b5971d8744bf94ef0d30f2be0e17c08b93988.tar.gz
skunky-art-b31b5971d8744bf94ef0d30f2be0e17c08b93988.tar.bz2
skunky-art-b31b5971d8744bf94ef0d30f2be0e17c08b93988.zip
fix: use commas in the viewport meta contentv1.3.5
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.
-rwxr-xr-xstatic/html/head.htm2
1 files changed, 1 insertions, 1 deletions
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