We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 716b05f commit 242b004Copy full SHA for 242b004
2 files changed
app/index.html
@@ -22,7 +22,7 @@
22
<!-- 2. Load our 'modules' -->
23
<script src='app/app.component.js'></script>
24
<script src='app/app.module.js'></script>
25
- <script src='app/main.js'></script>
+ <script src='app/app.js'></script>
26
</head>
27
28
<!-- 3. Display the application -->
app/js/app.js
@@ -0,0 +1,7 @@
1
+(function(app) {
2
+ document.addEventListener('DOMContentLoaded', function() {
3
+ ng.platformBrowserDynamic
4
+ .platformBrowserDynamic()
5
+ .bootstrapModule(app.AppModule);
6
+ });
7
+})(window.app || (window.app = {}));
0 commit comments