incorporate Rado's review comments

This commit is contained in:
Kathy Walrath 2015-03-03 17:43:26 -08:00
parent c42f28081e
commit b6717c73bd
1 changed files with 11 additions and 11 deletions

View File

@ -11,7 +11,7 @@ p.
p.
Create a new directory, and put a file named
<code>pubspec.yaml</code> file in it.
<code>pubspec.yaml</code> in it.
pre.prettyprint
code.
@ -49,8 +49,8 @@ p.
p.
<b>Note:</b>
If you're using Dart 1.9, then your version of angular2
will be higher than alpha 6.
If you're using Dart's Dev channel, then your version of angular2
will be higher than alpha 6. That's fine.
// PENDING: Update once 1.9 is on stable channel.
// TODO: Convert the above to a callout.
@ -108,25 +108,25 @@ p.
// [PENDING: add line numbers once we can specify where they start]
p.
The code you just added creates a component—a custom element—that
The code you just added creates a component that
has the tag <b>&lt;my-app></b>.
The Dart code for an Angular component consists of a class
(the <b>component controller</b>)
that has <code>@Component</code> and <code>@Template</code> annotations.
// PENDING: Is that correct???
.l-sub-section
h3 Annotations
p.
The <code>@Component</code> annotation defines the HTML tag for the component (the <code>selector</code> value).
The <code>@Component</code> annotation defines
the HTML tag for the component by specifying the component's CSS selector.
p.
The <code>@Template</code> annotation defines the HTML to apply to the
component. This component uses an inline template, but you can also have
an external template. To use an external template, specify a <code>url</code> property
The <code>@Template</code> annotation defines the HTML that
represents the component. This component uses an inline template,
but you can also have an external template. To use an external template,
specify a <code>url</code> property
and give it the path to the HTML file.
pre.prettyprint
@ -193,7 +193,7 @@ p.
p.
This code adds a <code>main()</code> function
that calls Angular's <code>bootstrap()</code> function.
The argument to <code>bootstrap()</code> is the name of the app class
The argument to <code>bootstrap()</code> is the name of the component class
you defined above.
p.