es6-shim to quickstart renaming.

This commit is contained in:
David East 2015-03-05 00:13:40 -08:00
parent 94508dd5b3
commit 0e6a738a41
1 changed files with 5 additions and 6 deletions

View File

@ -36,13 +36,12 @@ p.
h4 AtScript
p.
Angular is built with <strong>AtScript</strong>. AtScript is an extension of ES6 (ECMAScript 6), the new specification
of the JavaScript language. This quickstart features AtScript, but Angular
doesn't require you to write AtScript.
of the JavaScript language. This quickstart features AtScript, but you can write Angular in ES5 or ES6 as well.
h4 ES6
p.
AtScript compiles to <strong>ES6</strong>, which is not widely supported in all browsers today.
The es6-shim repository allows you to use ES6 or AtScript in the browser.
The <code>es6-shim.js</code> file allows you to use ES6 or AtScript in the browser.
h4 es6-shim
p.
@ -197,7 +196,7 @@ p.
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Angular 2 Quickstart&lt;/title&gt;
&lt;script src="/es6-shim/dist/es6-shim.js"&gt;&lt;/script&gt;
&lt;script src="/quickstart/dist/es6-shim.js"&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
@ -234,8 +233,8 @@ p.
&lt;script&gt;
// Rewrite the paths to load the files
System.paths = {
'angular2/*':'/es6-shim/angular2/*.js', // Angular
'rtts_assert/*': '/es6-shim/rtts_assert/*.js', //Runtime assertions
'angular2/*':'/quickstart/angular2/*.js', // Angular
'rtts_assert/*': '/quickstart/rtts_assert/*.js', //Runtime assertions
'app': 'app.es6' // The my-app component
};