diff options
| author | Christian Cleberg <[email protected]> | 2026-07-15 11:00:25 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-07-15 11:00:25 -0500 |
| commit | b31b5971d8744bf94ef0d30f2be0e17c08b93988 (patch) | |
| tree | 96cafde6802834da2ce314a3e49d0cb6d17d2204 /static/html/head.htm | |
| parent | 83d9cd0b7a3e0ec6beb5c889102211567a6db03f (diff) | |
| download | skunky-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.
Diffstat (limited to 'static/html/head.htm')
| -rwxr-xr-x | static/html/head.htm | 2 |
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 |
