Skip to content

Commit

Permalink
Rendering views activity
Browse files Browse the repository at this point in the history
  • Loading branch information
PilgrimMemoirs committed Dec 15, 2016
1 parent c4a33e4 commit 5683259
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,25 +125,24 @@ The below activities practice understanding how the components interact with eac

**The structure of our HTML has hierarchy** When an HTML element is nested inside of another element, the outer-most element has a higher hierarchy. That outer-element acts as a container for it's inner-elements.

Some backbone views will be responsible for other views and act as a container with hierarchy over the inner-elements that are generated from the views.
Some backbone views will be responsible for other views and act as a container with hierarchy over the inner-elements that are generated from the views. For example, in the Rolodex project, the Rolodex view was responsible for rendering many contact views

For example, in the Rolodex project, the Rolodex view was responsible for rendering many contact views


With our application, a single page will likely have many different Backbone views rendering as once.
With our Backbone applications, a single page will likely have many different Backbone views rendering as once.


**Activity:** Views Responsibility

With this activity, we will get more comfortable recognizing the code that is

Each of the following views should correspond to a color. ex: trip view is yellow, trip_lis view is blue and app view is red. Use that color to draw a square around all the code that corresponds to that view, including view files, html
With this activity, we will get more comfortable recognizing the code that is responsible for rendering all the different HTML elements.

Each of the following views should correspond to a color.
**ex:** trip_view is yellow, trip_list_view is blue and app view is red.

- trip view
- trip_list view
- app view
On the worksheets, use that color to draw a square around all the code snippets that correspond to that view.

- trip_view
- trip_list_view
- app_view


### Initial Page Load
Expand Down

0 comments on commit 5683259

Please sign in to comment.