Skip to content

Commit

Permalink
adjusted style, punctuaction a examples throughout view.textile
Browse files Browse the repository at this point in the history
  • Loading branch information
warp3d committed May 17, 2011
1 parent ea1a0a3 commit 99e22e2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/views.textile
Expand Up @@ -148,11 +148,11 @@ App.contactsController = SC.ArrayController.create({

Because we are only going to be working with one object at a time, +allowsMultipleSelection: NO+ will restrict the ability to select only one item.

And then an SC.ObjectController that proxies our selected object:
And then an <code>SC.ObjectController</code> that proxies our selected object:

<javascript filename="apps/my_app/controllers/contact.js">
MyApp.contactController = SC.ObjectController.create({
contentBinding: 'MyApp.contactsController.selection'
<javascript filename="apps/app/controllers/contact.js">
App.contactController = SC.ObjectController.create({
contentBinding: 'App.contactsController.selection'
});
</javascript>

Expand Down

0 comments on commit 99e22e2

Please sign in to comment.