Skip to content

Commit 064d26b

Browse files
32grahamEisenbergEffect
authored andcommitted
fix(index): specify utf-8 as the charset (aurelia#700)
Follow best practice to explicitly declare a charset. Relates to aurelia#642
1 parent 10c0edf commit 064d26b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

skeleton-typescript/index.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4+
<meta charset="utf-8">
45
<title>Aurelia</title>
56
<!--The FontAwesome version is locked at 4.6.3 in the package.json file to keep this from breaking.-->
67
<link rel="stylesheet" href="jspm_packages/npm/[email protected]/css/font-awesome.min.css">
@@ -13,14 +14,14 @@
1314
<div class="message">Aurelia Navigation Skeleton</div>
1415
<i class="fa fa-spinner fa-spin"></i>
1516
</div>
16-
17+
1718
<!-- The bluebird version is locked at 4.6.3 in the package.json file to keep this from breaking -->
1819
<!-- We include bluebird to bypass Edge's very slow Native Promise implementation. The Edge team -->
1920
<!-- has fixed the issues with their implementation with these fixes being distributed with the -->
2021
<!-- Windows 10 Anniversary Update on 2 August 2016. Once that update has pushed out, you may -->
2122
<!-- consider removing bluebird from your project and simply using native promises if you do -->
2223
<!-- not need to support Internet Explorer. -->
23-
<script src="jspm_packages/npm/[email protected]/js/browser/bluebird.min.js"></script>
24+
<script src="jspm_packages/npm/[email protected]/js/browser/bluebird.min.js"></script>
2425
<script src="jspm_packages/system.js"></script>
2526
<script src="config.js"></script>
2627
<script>

0 commit comments

Comments
 (0)