2015-12-14 23:05:13 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2016-02-03 03:35:20 -05:00
|
|
|
<title>Angular 2 Tour of Heroes</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2016-02-27 16:48:24 -05:00
|
|
|
<link rel="stylesheet" href="styles.css">
|
2016-02-03 03:35:20 -05:00
|
|
|
|
2016-01-17 22:59:34 -05:00
|
|
|
<!-- IE required polyfills, in this exact order -->
|
|
|
|
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
|
|
|
|
<script src="node_modules/systemjs/dist/system-polyfills.js"></script>
|
2016-02-18 01:20:03 -05:00
|
|
|
<script src="node_modules/angular2/es6/dev/src/testing/shims_for_IE.js"></script>
|
2016-01-17 22:59:34 -05:00
|
|
|
|
2015-12-14 23:05:13 -05:00
|
|
|
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
|
|
|
|
<script src="node_modules/systemjs/dist/system.src.js"></script>
|
|
|
|
<script src="node_modules/rxjs/bundles/Rx.js"></script>
|
|
|
|
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
|
|
|
|
<script>
|
|
|
|
System.config({packages: {app: {format: 'register', defaultExtension: 'js'}}});
|
2016-01-28 19:15:26 -05:00
|
|
|
System.import('app/main')
|
2015-12-14 23:05:13 -05:00
|
|
|
.then(null, console.error.bind(console));
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<my-app>Loading...</my-app>
|
|
|
|
</body>
|
|
|
|
</html>
|