]> git.cworth.org Git - empires-server/commitdiff
Fix viewport meta tag to use proper separators
authorCarl Worth <cworth@cworth.org>
Sun, 24 May 2020 15:53:31 +0000 (08:53 -0700)
committerCarl Worth <cworth@cworth.org>
Sun, 24 May 2020 20:48:51 +0000 (13:48 -0700)
I have no idea where these semicolons came from. Thanks to the
chromium console for reporting that they should be commas instead.

templates/base.html

index 6895772484550c4f6a16439bbc513aaf20f73a53..42b38bd2bf9f113d447d283187741b9c99533e00 100644 (file)
@@ -2,7 +2,7 @@
 <html>
   <head>
     <meta charset="utf-8"/>
-    <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
 
     <title>{{ title }}</title>