diff --git a/public/docs/js/latest/guide/displaying-data.jade b/public/docs/js/latest/guide/displaying-data.jade index 7c566547be..0537276d19 100644 --- a/public/docs/js/latest/guide/displaying-data.jade +++ b/public/docs/js/latest/guide/displaying-data.jade @@ -1,23 +1,25 @@ -p. - Mission: You should be able to display data from both properties and lists from a component’s controller to the - view. .l-main-section - h2#section-examples Examples: - ul - li - a(href='http://plnkr.co/edit/pQojSb3CTfTEejX0wGjO?p=preview') TypeScript - li - a(href='http://plnkr.co/edit/GOJiWOEem9jrOyEeY3uW?p=preview') ES5 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. + Mission: By the end of this chapter, you should be able to display data from both properties and + lists from a component’s controller to the view. p. - Let's walk through how we'd display a property, a list of properties, and then conditionally show content - based on state. + 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. - We'll end up with a UI that looks like this: + Let's walk through how we'd display a property, a list of properties, and then conditionally show content + based on state. + p. + We'll end up with a UI that looks like this: div(align='center') - img(src='displaying-data-example1.png') + img(src='displaying-data-example1.png') + + .l-sub-section + h3#section-examples Examples: + ul + li + a(href='http://plnkr.co/edit/pQojSb3CTfTEejX0wGjO?p=preview') TypeScript + li + a(href='http://plnkr.co/edit/GOJiWOEem9jrOyEeY3uW?p=preview') ES5 .l-main-section h2#section-create-an-entry-point Create an entry point