This commit is contained in:
Alex Wolfe 2015-03-04 22:09:03 -08:00
parent a7eaafd1d5
commit 1f978a7927

View File

@ -54,9 +54,9 @@ p.
// PENDING: "Think of ... as a package" could be clearer. // PENDING: "Think of ... as a package" could be clearer.
// STEP 2 - Import Angular ########################## // STEP 3 - Import Angular ##########################
.l-main-section .l-main-section
h2#section-transpile 2. Import Angular h2#section-transpile 3. Import Angular
p. p.
Create two files, <code>index.html</code> and Create two files, <code>index.html</code> and
@ -79,10 +79,10 @@ p.
These modules load at runtime. These modules load at runtime.
// STEP 3 - Create a component ########################## // STEP 4 - Create a component ##########################
.l-main-section .l-main-section
h2#section-angular-create-account 3. Define a component h2#section-angular-create-account 4. Define a component
p. p.
Components structure and represent the UI. This quickstart demonstrates the process of creating a component Components structure and represent the UI. This quickstart demonstrates the process of creating a component
@ -165,9 +165,9 @@ p.
// STEP 4 - Bootstrap ########################## // STEP 5 - Bootstrap ##########################
.l-main-section .l-main-section
h2#section-transpile 4. Bootstrap h2#section-transpile 5. Bootstrap
p. p.
At the bottom of <code>app.es6</code>, call the <code>bootstrap()</code> function At the bottom of <code>app.es6</code>, call the <code>bootstrap()</code> function
@ -183,10 +183,10 @@ p.
(as well as any child components it contains) to render. (as well as any child components it contains) to render.
// STEP 5 - Declare the HTML ########################## // STEP 6 - Declare the HTML ##########################
.l-main-section .l-main-section
h2#section-angular-create-account 5. Declare the HTML h2#section-angular-create-account 6. Declare the HTML
p. p.
Inside the <code>head</code> tag of <code>index.html</code>, include the <code>es6-shim.js</code> file. Inside the <code>head</code> tag of <code>index.html</code>, include the <code>es6-shim.js</code> file.
@ -209,10 +209,10 @@ p.
&lt;/body&gt; &lt;/body&gt;
&lt;/html&gt; &lt;/html&gt;
// STEP 6 - Declare the HTML ########################## // STEP 7 - Declare the HTML ##########################
.l-main-section .l-main-section
h2#section-load-component-module 6. Load the component h2#section-load-component-module 7. Load the component
p. p.
The last step is to load the module for the <code>my-app</code> component. The last step is to load the module for the <code>my-app</code> component.
@ -254,10 +254,10 @@ p.
li The component to display on the page li The component to display on the page
// STEP 6 - Run a local server ########################## // STEP 8 - Run a local server ##########################
.l-main-section .l-main-section
h2#section-load-component-module 6. Run a local server h2#section-load-component-module 8. Run a local server
// PENDING: add directions (or at least hints) here // PENDING: add directions (or at least hints) here