2015-11-13 09:47:42 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!-- #docregion -->
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>Angular 2 Structural Directives</title>
|
2015-12-15 15:14:10 -05:00
|
|
|
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
|
2015-11-13 09:47:42 -05:00
|
|
|
<script src="node_modules/systemjs/dist/system.src.js"></script>
|
2015-12-15 15:14:10 -05:00
|
|
|
<script src="node_modules/rxjs/bundles/Rx.js"></script>
|
2015-11-13 09:47:42 -05:00
|
|
|
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
|
|
|
|
<script>
|
|
|
|
System.config({
|
2015-12-15 15:14:10 -05:00
|
|
|
packages: {
|
|
|
|
app: {
|
|
|
|
format: 'register',
|
|
|
|
defaultExtension: 'js'
|
|
|
|
}
|
|
|
|
}
|
2015-11-13 09:47:42 -05:00
|
|
|
});
|
2015-12-15 15:14:10 -05:00
|
|
|
System.import('app/boot')
|
|
|
|
.then(null, console.error.bind(console));
|
2015-11-13 09:47:42 -05:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<structural-directives>Loading...</structural-directives>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|