2015-11-21 14:23:40 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!-- #docregion -->
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Angular 2 Lifecycle Hooks</title>
|
2016-04-27 14:28:22 -04:00
|
|
|
<meta charset="UTF-8">
|
2016-02-03 03:35:20 -05:00
|
|
|
<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-01-23 13:21:09 -05:00
|
|
|
<link rel="stylesheet" href="sample.css">
|
2016-04-27 14:28:22 -04:00
|
|
|
|
|
|
|
<!-- Polyfill(s) for older browsers -->
|
2016-01-17 22:59:34 -05:00
|
|
|
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
|
|
|
|
|
2016-04-27 14:28:22 -04:00
|
|
|
<script src="node_modules/zone.js/dist/zone.js"></script>
|
|
|
|
<script src="node_modules/reflect-metadata/Reflect.js"></script>
|
2015-11-21 14:23:40 -05:00
|
|
|
<script src="node_modules/systemjs/dist/system.src.js"></script>
|
2016-04-27 14:28:22 -04:00
|
|
|
|
|
|
|
<script src="systemjs.config.js"></script>
|
2015-11-21 14:23:40 -05:00
|
|
|
<script>
|
2016-04-27 14:28:22 -04:00
|
|
|
System.import('app').catch(function(err){ console.error(err); });
|
2015-11-21 14:23:40 -05:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<my-app>Loading...</my-app>
|
|
|
|
</body>
|
|
|
|
|
2016-04-27 14:28:22 -04:00
|
|
|
</html>
|