You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/article/en-US/getting-started.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ If you've followed along this far, you now have everything set up to help you le
49
49
<script src="jspm_packages/system.js"></script>
50
50
<script src="config.js"></script>
51
51
<script>
52
-
System.import('aurelia-bootstrapper');
52
+
SystemJS.import('aurelia-bootstrapper');
53
53
</script>
54
54
</body>
55
55
</html>
@@ -60,7 +60,7 @@ Yes, that's it. This is the only HTML page in our application. The head of the d
60
60
61
61
Let's start with the script tags. First we have _system.js_, our standards-based module loader. It's what loads the Aurelia library as well as your own code. Next we have _config.js_. This contains configuration for the loader. It's generated automatically whenever you install packages with our tools. We've gone ahead and pre-installed everything for you in this tutorial, so you don't need to worry about that yet.
62
62
63
-
Once we have our module loader and its configuration, we load the `aurelia-bootstrapper` module with a call to `System.import`.
63
+
Once we have our module loader and its configuration, we load the `aurelia-bootstrapper` module with a call to `SystemJS.import`.
64
64
65
65
When the bootstrapper loads it inspects the HTML document for _aurelia-app_ attributes. In this case it will find that the body has an `aurelia-app` attribute. This tells the bootstrapper to load our _app_ view-model and its view, conventionally located in _app${context.language.fileExtension}_ and _app.html_ and then compose them as an Aurelia application in the DOM.
0 commit comments