Skip to content

Commit

Permalink
fix(@embark/dapps): use utf-8 in html script tag
Browse files Browse the repository at this point in the history
  • Loading branch information
3esmit authored and jrainville committed Oct 7, 2020
1 parent 23a6c8c commit cfa43bc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dapps/templates/boilerplate/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<head>
<title>Embark</title>
<link rel="stylesheet" href="css/app.css">
<script src="js/app.js"></script>
<script src="js/app.js" charset="UTF-8"></script>
</head>
<body>
<h3>Welcome to Embark!</h3>
Expand Down
2 changes: 1 addition & 1 deletion dapps/templates/demo/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
<body class="container">
<div id="app">
</div>
<script src="js/dapp.js"></script>
<script src="js/dapp.js" charset="UTF-8"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion dapps/tests/app/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,6 @@ <h3>Embark Calls </h3>
</div>
</div>

<script src="js/app.js"></script>
<script src="js/app.js" charset="UTF-8"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion dapps/tests/app/app/test.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<head>
<title>Embark - TestApp</title>
<link rel="stylesheet" href="css/app.css">
<script src="js/test.js"></script>
<script src="js/test.js" charset="UTF-8"></script>
</head>
<body class="container">

Expand Down
2 changes: 1 addition & 1 deletion dapps/tests/app/app/test2.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<head>
<title>Embark - TestApp</title>
<link rel="stylesheet" href="css/app.css">
<script src="js/embark.js"></script>
<script src="js/embark.js" charset="UTF-8"></script>
</head>
<body class="container">

Expand Down

0 comments on commit cfa43bc

Please sign in to comment.