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