diff --git a/guides/release/tutorial/part-2/index.md b/guides/release/tutorial/part-2/index.md index 36e556d77c..24f6f5bfd0 100644 --- a/guides/release/tutorial/part-2/index.md +++ b/guides/release/tutorial/part-2/index.md @@ -4,7 +4,7 @@ Hooray, you've made it to the second part of the tutorial! In the following sect Along the way, we'll also add some new features to our Super Rentals app. By the end of this section, we'll have implemented some search functionality and refactored a good bit of our code to use some new Ember concepts -Search functionality in the Super Rentals app +Search functionality in the Super Rentals app In part two, we'll cover the following concepts: diff --git a/guides/release/tutorial/part-2/provider-components.md b/guides/release/tutorial/part-2/provider-components.md index a7fcc207da..f955ffc625 100644 --- a/guides/release/tutorial/part-2/provider-components.md +++ b/guides/release/tutorial/part-2/provider-components.md @@ -4,11 +4,11 @@ In this chapter, we'll work on adding a new search feature, and refactor our `in -The Super Rentals app by the end of the chapter +The Super Rentals app by the end of the chapter During this refactor, you will learn about: -- Using Ember's built-in `` component +- Using forms - The provider component pattern - Using block parameters when invoking components - Yielding data to caller components @@ -17,9 +17,9 @@ During this refactor, you will learn about: As our app grows and as we add more features to it, one thing that would be really nice to have is some search functionality. It would be great if our users could just type a word into a search box and our app could just respond with matching and relevant rentals. So how could we go about implementing this feature? -Well, we can start simple. Before we worry about implementing the "search" part of this feature, let's just get something on the page. The first step is to add an `` tag to our `index` page, and make it look pretty with a class. +Well, we can start simple. Before we worry about implementing the "search" part of this feature, let's just get something on the page. The first step is to add a form with an `` tag to our `index` page, and make it look pretty with a class. -```handlebars { data-filename="app/templates/index.hbs" data-diff="+8,+9,+10,+11,+12" } +```handlebars { data-filename="app/templates/index.hbs" data-diff="+8,+9,+10,+11,+12,+13,+14" }

Welcome to Super Rentals!

We hope you find exactly what you're looking for in a place to stay.

@@ -27,10 +27,12 @@ Well, we can start simple. Before we worry about implementing the "search" part
- +
+ +