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>
|
<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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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">
|
||||||
|
|
||||||
|
|
|
@ -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">
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue