Skip to content

Instantly share code, notes, and snippets.

@gmoeck
Created January 15, 2011 20:42
Show Gist options
  • Save gmoeck/781228 to your computer and use it in GitHub Desktop.
Save gmoeck/781228 to your computer and use it in GitHub Desktop.
//Replace instances which look like:
Todos.getPath('mainPage.mainPane.middleView.contentView')
//With something that looks like this:
Todos.mainPage.todosList();
//And add the following to main_page.js
Todos.mainPage = SC.Page.design({
todosList: SC.outlet('mainPane.middleView.contentView'),
...
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment