Skip to content

Instantly share code, notes, and snippets.

@levi
Created March 7, 2010 17:48
Show Gist options
  • Save levi/324505 to your computer and use it in GitHub Desktop.
Save levi/324505 to your computer and use it in GitHub Desktop.
// View
calendar: Ljm.CalendarView.design({
...
selectionBinding: 'Ljm.calendarController.selectedDate'
...
})
// calendarController
Ljm.calendarController = SC.ObjectController.create({
selectedDate: null,
...
// readingController
require('controllers/calendar');
Ljm.chaptersController = SC.ObjectController.create({
dateBinding: SC.Binding.oneWay('Ljm.calendarController.selectedDate')
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment