From 1577d2c698381f609deb11f5191cabe955c16bdb Mon Sep 17 00:00:00 2001 From: Alex Wolfe Date: Tue, 21 Apr 2015 23:12:15 -0700 Subject: [PATCH] removed editor notes --- public/docs/js/latest/guide/making-components.jade | 12 ------------ public/docs/js/latest/guide/user-input.jade | 10 ---------- 2 files changed, 22 deletions(-) diff --git a/public/docs/js/latest/guide/making-components.jade b/public/docs/js/latest/guide/making-components.jade index 356497e320..9c85c3ef58 100644 --- a/public/docs/js/latest/guide/making-components.jade +++ b/public/docs/js/latest/guide/making-components.jade @@ -1,16 +1,4 @@ .l-main-section - p. - Mission: 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 diff --git a/public/docs/js/latest/guide/user-input.jade b/public/docs/js/latest/guide/user-input.jade index 91eac57fe9..2f837680c0 100644 --- a/public/docs/js/latest/guide/user-input.jade +++ b/public/docs/js/latest/guide/user-input.jade @@ -1,14 +1,4 @@ .l-main-section - p. - Mission: 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 () to surround the name of an event.