Docs updates.

This commit is contained in:
David East 2015-04-22 05:38:10 -07:00
parent 0b917e0f93
commit 5f08eecc58
2 changed files with 4 additions and 6 deletions

View File

@ -20,7 +20,8 @@
},
"making-components": {
"title": "Making Components"
"title": "Making Components",
"intro": "Angular applications are a tree of nested components. You always begin with a top-level component. You add child components by including them in the parent's template."
},
"talking-to-components": {

View File

@ -1,13 +1,10 @@
.callout.is-helpful
header Live Examples
.statement
h4 Live Examples
p.
If you want to skip to the working examples you can check out these links on Plunker. <a href='http://plnkr.co/edit/pQojSb3CTfTEejX0wGjO?p=preview')> TypeScript Example</a> or <a href='http://plnkr.co/edit/GOJiWOEem9jrOyEeY3uW?p=preview> ES5 Example</a>.
.l-main-section
p.
Displaying data is job number one for any good application. In Angular, you bind data to elements in HTML
templates and Angular automatically updates the UI as data changes.
p.
Let's walk through how we'd display a property, a list of properties, and then conditionally show content
based on state.