Skip to content

Commit cfa43bc

Browse files
3esmitjrainville
authored andcommitted
fix(@embark/dapps): use utf-8 in html script tag
1 parent 23a6c8c commit cfa43bc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

dapps/templates/boilerplate/app/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<head>
33
<title>Embark</title>
44
<link rel="stylesheet" href="css/app.css">
5-
<script src="js/app.js"></script>
5+
<script src="js/app.js" charset="UTF-8"></script>
66
</head>
77
<body>
88
<h3>Welcome to Embark!</h3>

dapps/templates/demo/app/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
<body class="container">
1313
<div id="app">
1414
</div>
15-
<script src="js/dapp.js"></script>
15+
<script src="js/dapp.js" charset="UTF-8"></script>
1616
</body>
1717
</html>

dapps/tests/app/app/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,6 @@ <h3>Embark Calls </h3>
145145
</div>
146146
</div>
147147

148-
<script src="js/app.js"></script>
148+
<script src="js/app.js" charset="UTF-8"></script>
149149
</body>
150150
</html>

dapps/tests/app/app/test.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<head>
33
<title>Embark - TestApp</title>
44
<link rel="stylesheet" href="css/app.css">
5-
<script src="js/test.js"></script>
5+
<script src="js/test.js" charset="UTF-8"></script>
66
</head>
77
<body class="container">
88

dapps/tests/app/app/test2.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<head>
33
<title>Embark - TestApp</title>
44
<link rel="stylesheet" href="css/app.css">
5-
<script src="js/embark.js"></script>
5+
<script src="js/embark.js" charset="UTF-8"></script>
66
</head>
77
<body class="container">
88

0 commit comments

Comments
 (0)