Skip to content

Commit

Permalink
Revised Section Titles
Browse files Browse the repository at this point in the history
  • Loading branch information
CheezItMan committed Dec 15, 2016
1 parent d2d4700 commit 88b799b
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This repo includes a completed Backbone application version of Trek that we will

***

## 1) Review Components
## 1) Backbone Components Overview
Below are the Backbone components we have focused on to build our single page applications. Each component has a brief explanation along with a link to it's documentation.

- [Model](#model)
Expand Down Expand Up @@ -53,21 +53,24 @@ List all of the components

***

## 2) How we have structured our Backbone applications
## 2) Rolodex Structure - Review

The point of Backbone is to provide a very intentional structure to our front-end code, so that we know where to find the code that is handling the specific functionality of our application.

With Backbone being a less opinionated library/framework, it also has less rules and conventions on how to organize your application and where you implement specific functionality.

We'll take a look at a sample Rolodex solution.
We'll take a look at a [sample Rolodex solution.](https://github.com/Hamled/rolodex/tree/Hamled/impl)

Fork & Clone this [repository.](https://github.com/Hamled/rolodex/tree/Hamled/impl).
If you choose to Fork & Clone this [repository.](https://github.com/Hamled/rolodex/tree/Hamled/impl).

Then execute:
Then you'll need to execute:
```bash
$ git fetch
$ git checkout impl
```

Because the solution is on the impl branch.

To get our solution to Rolodex for examination.

### App.js
Expand Down Expand Up @@ -113,7 +116,7 @@ If this process sounds familiar, it's because it's basically the same as having

***

## 3) Review How the Components Interact with Each Other
## 3) Looking at Trek-Backbone How Elements Interact
Each component is responsible for specific functionality of our application. These components rely on each other, which can quickly complicate how data flows through our application.

The below activities practice understanding how the components interact with each other.
Expand Down

0 comments on commit 88b799b

Please sign in to comment.