Skip to content

Commit

Permalink
do not zoom in on ios safari
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodingwizard committed Dec 19, 2023
1 parent 9f0d6e7 commit 5ac3267
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- We need maximum-scale=1 to prevent zooming in on ios mobile -->
<!-- https://stackoverflow.com/questions/2989263/disable-auto-zoom-in-input-text-tag-safari-on-iphone -->
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1"
/>
<title>Real-Time Collaborative Online IDE</title>
</head>
<body>
Expand Down

0 comments on commit 5ac3267

Please sign in to comment.