Skip to content

Commit 0155cd5

Browse files
chore(all): prepare docs release 1.0.0-beta.1.1.1
1 parent dc42dca commit 0155cd5

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-framework",
3-
"version": "1.0.0-beta.1.1.0",
3+
"version": "1.0.0-beta.1.1.1",
44
"description": "The aurelia framework brings together all the required core aurelia libraries into a ready-to-go application-building platform.",
55
"keywords": [
66
"aurelia",

doc/article/en-US/app-configuration-and-startup.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -158,10 +158,10 @@ Aurelia was originally designed for Evergreen Browsers. This includes Chrome, Fi
158158
<script src="jspm_packages/system.js"></script>
159159
<script src="config.js"></script>
160160
<script>
161-
System.import('core-js').then(function() {
162-
return System.import('polymer/mutationobservers');
161+
SystemJS.import('core-js').then(function() {
162+
return SystemJS.import('polymer/mutationobservers');
163163
}).then(function() {
164-
System.import('aurelia-bootstrapper');
164+
SystemJS.import('aurelia-bootstrapper');
165165
});
166166
</script>
167167
</body>
@@ -187,7 +187,7 @@ So far, we've been bootstrapping our app declaratively by using the `aurelia-app
187187
<script src="jspm_packages/system.js"></script>
188188
<script src="config.js"></script>
189189
<script>
190-
System.import('aurelia-bootstrapper').then(bootstrapper => {
190+
SystemJS.import('aurelia-bootstrapper').then(bootstrapper => {
191191
bootstrapper.bootstrap(function(aurelia) {
192192
aurelia.use
193193
.standardConfiguration()
@@ -339,7 +339,7 @@ All this is possible with Aurelia, using a single method call: `enhance`. Instea
339339
<script src="jspm_packages/system.js"></script>
340340
<script src="config.js"></script>
341341
<script>
342-
System.import('aurelia-bootstrapper').then(bootstrapper => {
342+
SystemJS.import('aurelia-bootstrapper').then(bootstrapper => {
343343
bootstrapper.bootstrap(function(aurelia){
344344
aurelia.use
345345
.defaultBindingLanguage()
@@ -373,7 +373,7 @@ Optionally, you can provide an object instance to use as the data-binding contex
373373
<script src="jspm_packages/system.js"></script>
374374
<script src="config.js"></script>
375375
<script>
376-
System.import('aurelia-bootstrapper').then(bootstrapper => {
376+
SystemJS.import('aurelia-bootstrapper').then(bootstrapper => {
377377
bootstrapper.bootstrap(function(aurelia){
378378
aurelia.use
379379
.defaultBindingLanguage()

doc/article/en-US/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ If you've followed along this far, you now have everything set up to help you le
4949
<script src="jspm_packages/system.js"></script>
5050
<script src="config.js"></script>
5151
<script>
52-
System.import('aurelia-bootstrapper');
52+
SystemJS.import('aurelia-bootstrapper');
5353
</script>
5454
</body>
5555
</html>
@@ -60,7 +60,7 @@ Yes, that's it. This is the only HTML page in our application. The head of the d
6060

6161
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.
6262

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`.
6464

6565
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.
6666

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-framework",
3-
"version": "1.0.0-beta.1.1.0",
3+
"version": "1.0.0-beta.1.1.1",
44
"description": "The aurelia framework brings together all the required core aurelia libraries into a ready-to-go application-building platform.",
55
"keywords": [
66
"aurelia",

0 commit comments

Comments
 (0)