mirror of https://github.com/embarklabs/embark.git
fix(@embark/dapps): use utf-8 in html script tag
This commit is contained in:
parent
23a6c8c83f
commit
cfa43bc464
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -145,6 +145,6 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<script src="js/app.js"></script>
|
||||
<script src="js/app.js" charset="UTF-8"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -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">
|
||||
|
||||
|
|
|
@ -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">
|
||||
|
||||
|
|
Loading…
Reference in New Issue