]> git.cworth.org Git - lmno.games/commitdiff
Correct various meta viewport tags
authorCarl Worth <cworth@cworth.org>
Tue, 26 May 2020 00:13:11 +0000 (17:13 -0700)
committerCarl Worth <cworth@cworth.org>
Tue, 26 May 2020 03:53:38 +0000 (20:53 -0700)
I don't know where this cargo cult started, but the semicolon
separator was just wrong, (should be a comma), and the
maximum-scale=1.0 and user-scalable=0 were really just rude, (if a
user needs to/wants to zoom in on a page for accessibility purposes,
who are we to say they can't or shouldn't?).

empires/game.html
empires/index.html
index.html

index c901f5fc20d8573182e34d747ed26e85d93fd271..da7e73060340afb69b562fc004adc25cdb6d7f7e 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" />
 
     <title>The Game of Empires</title>
 
index 76b5e952583ed53828e7e2be9a6213ed10d35902..b873e9e27f8ed84ba2af7ad8dd5b9c6d818b4d78 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" />
 
     <title>The Game of Empires</title>
 
index 3d0842ca37896541c3742d930099694119c3a0c3..261234ae26e26d8aefe509674613a11790bb799a 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" />
 
     <title>LMNO Games</title>