Skip to content

Commit

Permalink
fix: Remove user-scalable=no from viewport in templates (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
thelovekesh committed Oct 15, 2020
1 parent 7d8cb81 commit cd74bd2
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions app/templates/about.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<title><%- blogTitle %></title>

<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">

<link rel="shortcut icon" href="../assets/favicon.ico" type="image/x-icon">
Expand All @@ -24,4 +24,4 @@
<script defer src="../src/ts/init.ts"></script>
</body>

</html>
</html>
2 changes: 1 addition & 1 deletion app/templates/article.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<%- article.title %>
</title>

<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">

<link rel="shortcut icon" href="../../assets/favicon.ico" type="image/x-icon">
Expand Down
2 changes: 1 addition & 1 deletion app/templates/articles.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<title><%- blogTitle %></title>

<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">

<link rel="shortcut icon" href="../assets/favicon.ico" type="image/x-icon">
Expand Down
4 changes: 2 additions & 2 deletions app/templates/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<title><%- blogTitle %></title>

<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">

<link rel="shortcut icon" href="../assets/favicon.ico" type="image/x-icon">
Expand All @@ -24,4 +24,4 @@
<script defer src="../src/ts/init.ts"></script>
</body>

</html>
</html>
4 changes: 2 additions & 2 deletions app/templates/work.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<%- title %>
</title>

<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">

<link rel="shortcut icon" href="../../assets/favicon.ico" type="image/x-icon">
Expand Down Expand Up @@ -35,4 +35,4 @@
</main>

<script defer src="../../src/ts/init.ts"></script>
</body>
</body>
4 changes: 2 additions & 2 deletions app/templates/works.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<title><%- blogTitle %></title>

<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">

<link rel="shortcut icon" href="../assets/favicon.ico" type="image/x-icon">
Expand Down Expand Up @@ -33,4 +33,4 @@
<script defer src="../src/ts/init.ts"></script>
</body>

</html>
</html>

0 comments on commit cd74bd2

Please sign in to comment.