removed editor notes

This commit is contained in:
Alex Wolfe 2015-04-21 23:12:15 -07:00
parent 78bb7483a4
commit 1577d2c698
2 changed files with 0 additions and 22 deletions

View File

@ -1,16 +1,4 @@
.l-main-section
p.
<strong>Mission:</strong> By the end of this chapter, you should be able to create a child component and render
it within a parent component. You should also be able to bind to the child component.
.l-sub-section
h3#section-examples Examples:
ul
li
a(href='') TypeScript
li
a(href='') ES5
p.
As mentioned earlier, you build Angular applications as a tree of nested components. You've seen how to create
a top-level component. You add child components to a parent component by using them in the parent component's

View File

@ -1,14 +1,4 @@
.l-main-section
p.
<strong>Mission:</strong> By the end of this chapter, you should be able to add to a list on a page when a
button is clicked and update the text displayed when the user types into a textbox.
.l-sub-section
h3#section-examples Examples:
ul
li
a(href='') TypeScript
li
a(href='') ES5
p.
You can make your application respond to user input by associating events with functions in your controller
using the event syntax using <strong>()</strong> to surround the name of an event.