Skip to content
This repository has been archived by the owner on Jul 12, 2020. It is now read-only.

Fix Typo #109

Merged
merged 3 commits into from
Apr 14, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ The benefit of this architecture is that each component plays its own separate r
var buildPhotoView = function( photoModel, photoController ){

var base = document.createElement('div'),
photoEl = document.createElement('div');
var photoEl = document.createElement('div');

base.appendChild(photoEl);

Expand Down Expand Up @@ -960,7 +960,7 @@ var GalleryRouter = Backbone.Router.extend({
any of the components between two URL slashes*/
/*Sample usage: http://unicorns.com/#photos/5*/

"search/:query" : "searchPhotos"
"search/:query" : "searchPhotos",
/*We can also define multiple routes that are bound to the same map function,
in this case searchPhotos(). Note below how we're optionally passing in a
reference to a page number if one is supplied*/
Expand Down
4 changes: 2 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ body {
font-family: "Helvetica Neue", Helvetica, "Hiragino Sans GB", Arial, sans-serif;
font-size: 14px;
line-height: 20px;
color: #737373;
color: #000000;
margin: 10px 13px 10px 13px;
}
a {
Expand Down Expand Up @@ -115,4 +115,4 @@ pre code {
width: 748px;
margin:40px auto;
}
}
}