fix(@embark/dapps): use utf-8 in html script tag

This commit is contained in:
Ricardo Guilherme Schmidt 2020-10-07 10:48:41 -03:00 committed by Jonathan Rainville
parent 23a6c8c83f
commit cfa43bc464
5 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
<head> <head>
<title>Embark</title> <title>Embark</title>
<link rel="stylesheet" href="css/app.css"> <link rel="stylesheet" href="css/app.css">
<script src="js/app.js"></script> <script src="js/app.js" charset="UTF-8"></script>
</head> </head>
<body> <body>
<h3>Welcome to Embark!</h3> <h3>Welcome to Embark!</h3>

View File

@ -12,6 +12,6 @@
<body class="container"> <body class="container">
<div id="app"> <div id="app">
</div> </div>
<script src="js/dapp.js"></script> <script src="js/dapp.js" charset="UTF-8"></script>
</body> </body>
</html> </html>

View File

@ -145,6 +145,6 @@
</div> </div>
</div> </div>
<script src="js/app.js"></script> <script src="js/app.js" charset="UTF-8"></script>
</body> </body>
</html> </html>

View File

@ -2,7 +2,7 @@
<head> <head>
<title>Embark - TestApp</title> <title>Embark - TestApp</title>
<link rel="stylesheet" href="css/app.css"> <link rel="stylesheet" href="css/app.css">
<script src="js/test.js"></script> <script src="js/test.js" charset="UTF-8"></script>
</head> </head>
<body class="container"> <body class="container">

View File

@ -2,7 +2,7 @@
<head> <head>
<title>Embark - TestApp</title> <title>Embark - TestApp</title>
<link rel="stylesheet" href="css/app.css"> <link rel="stylesheet" href="css/app.css">
<script src="js/embark.js"></script> <script src="js/embark.js" charset="UTF-8"></script>
</head> </head>
<body class="container"> <body class="container">