Skip to content

Commit ccf438e

Browse files
skel-nave-require-vs-ts updated to ts15
1 parent 6a6ac61 commit ccf438e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+50268
-40572
lines changed

skel-nav-esri-vs-ts/skel-nav-esri-vs-ts/index-latest.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!DOCTYPE html>
22

33
<html lang="en">
44
<head>
@@ -45,11 +45,11 @@
4545

4646
<script>
4747
require(["aurelia/aurelia-bundle-latest"], function(au) {
48-
require(["aurelia-bundle-manifest"], function (abm) {
49-
require(["aurelia-bootstrapper"], function (b) {
48+
require(["aurelia-bundle-manifest"], function(abm) {
49+
require(["aurelia-bootstrapper"], function(b) {
5050
// alert("loaded");
5151
});
52-
})
52+
});
5353
});
5454
</script>
5555
</body>
Binary file not shown.

skel-nav-require-vs-ts/skel-nav-require-vs-ts/index-latest.html

+8-5
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,18 @@
1010
<link href="styles/styles.css" rel="stylesheet" />
1111
</head>
1212

13-
<body aurelia-app="views/app">
13+
<body aurelia-app="views/main">
1414
<div class="splash">
1515
<div class="message">Aurelia Navigation Skeleton</div>
1616
<i class="fa fa-spinner fa-spin"></i>
1717
</div>
1818

19-
<script src="scripts/webcomponentsjs/webcomponents.min.js"></script>
20-
<script src="scripts/core-js/client/core.js"></script>
2119
<script src="http://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.15/require.js"></script>
2220
<script>
2321
var origin = window.location.origin;
2422
var pathname = window.location.pathname;
2523
var baseUrl = origin + pathname.toLowerCase().replace("index-latest.html", "");
26-
// var baseUrl = "http://localhost:62960";
24+
2725
require.config({
2826
baseUrl: baseUrl,
2927
paths: {
@@ -39,7 +37,12 @@
3937
}
4038
});
4139

42-
require(["aurelia/aurelia-bundle-latest"], function (au) { });
40+
require(["aurelia/aurelia-bundle-latest"], function (au) {
41+
require(["aurelia-bundle-manifest"], function (abm) {
42+
require(["aurelia-bootstrapper"], function (b) {
43+
});
44+
});
45+
});
4346
</script>
4447
</body>
4548
</html>

skel-nav-require-vs-ts/skel-nav-require-vs-ts/index-release.html

+8-5
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,18 @@
1010
<link href="styles/styles.css" rel="stylesheet" />
1111
</head>
1212

13-
<body aurelia-app="views/app">
13+
<body aurelia-app="views/main">
1414
<div class="splash">
1515
<div class="message">Aurelia Navigation Skeleton</div>
1616
<i class="fa fa-spinner fa-spin"></i>
1717
</div>
1818

19-
<script src="scripts/webcomponentsjs/webcomponents.min.js"></script>
20-
<script src="scripts/core-js/client/core.js"></script>
2119
<script src="http://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.15/require.js"></script>
2220
<script>
2321
var origin = window.location.origin;
2422
var pathname = window.location.pathname;
2523
var baseUrl = origin + pathname.toLowerCase().replace("index-release.html", "");
26-
// var baseUrl = "http://localhost:62960";
24+
2725
require.config({
2826
baseUrl: baseUrl,
2927
paths: {
@@ -39,7 +37,12 @@
3937
}
4038
});
4139

42-
require(["aurelia/aurelia-bundle"], function (au) { });
40+
require(["aurelia/aurelia-bundle"], function (au) {
41+
require(["aurelia-bundle-manifest"], function (abm) {
42+
require(["aurelia-bootstrapper"], function (b) {
43+
});
44+
});
45+
});
4346
</script>
4447
</body>
4548
</html>

0 commit comments

Comments
 (0)