Skip to content

Commit f2afba7

Browse files
chore(all): update some source comments
1 parent 26a38c8 commit f2afba7

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

skeleton-esnext-aspnetcore/src/skeleton/views/shared/_layout.cshtml

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>@ViewBag.Title</title>
7+
<!--The FontAwesome version is locked at 4.6.3 in the package.json file to keep this from breaking.-->
78
<link rel="stylesheet" href="~/jspm_packages/npm/[email protected]/css/font-awesome.min.css" />
89
<link rel="stylesheet" href="~/styles/styles.css" />
910
@RenderSection("Styles", false)
@@ -13,4 +14,4 @@
1314
@RenderBody()
1415
</section>
1516
</body>
16-
</html>
17+
</html>

skeleton-esnext/index.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<title>Aurelia</title>
55
<!--The FontAwesome version is locked at 4.6.3 in the package.json file to keep this from breaking.-->
66
<link rel="stylesheet" href="jspm_packages/npm/[email protected]/css/font-awesome.min.css">
7-
<!--JSPM Has a Bug with Bootstrap so We Have to Include jQuery Here-->
87
<link rel="stylesheet" href="styles/styles.css">
98
<meta name="viewport" content="width=device-width, initial-scale=1">
109
</head>
@@ -14,14 +13,14 @@
1413
<div class="message">Aurelia Navigation Skeleton</div>
1514
<i class="fa fa-spinner fa-spin"></i>
1615
</div>
17-
16+
1817
<!-- The bluebird version is locked at 4.6.3 in the package.json file to keep this from breaking -->
1918
<!-- We include bluebird to bypass Edge's very slow Native Promise implementation. The Edge team -->
2019
<!-- has fixed the issues with their implementation with these fixes being distributed with the -->
2120
<!-- Windows 10 Anniversary Update on 2 August 2016. Once that update has pushed out, you may -->
2221
<!-- consider removing bluebird from your project and simply using native promises if you do -->
2322
<!-- not need to support Internet Explorer. -->
24-
<script src="jspm_packages/npm/[email protected]/js/browser/bluebird.min.js"></script>
23+
<script src="jspm_packages/npm/[email protected]/js/browser/bluebird.min.js"></script>
2524
<script src="jspm_packages/system.js"></script>
2625
<script src="config.js"></script>
2726
<script>

skeleton-typescript-aspnetcore/src/skeleton/views/shared/_layout.cshtml

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>@ViewBag.Title</title>
7+
<!--The FontAwesome version is locked at 4.6.3 in the package.json file to keep this from breaking.-->
78
<link rel="stylesheet" href="~/jspm_packages/npm/[email protected]/css/font-awesome.min.css" />
89
<link rel="stylesheet" href="~/styles/styles.css" />
910
@RenderSection("Styles", false)
@@ -13,4 +14,4 @@
1314
@RenderBody()
1415
</section>
1516
</body>
16-
</html>
17+
</html>

0 commit comments

Comments
 (0)