Skip to content

Instantly share code, notes, and snippets.

@skylar
Created April 24, 2010 12:59
Show Gist options
  • Select an option

  • Save skylar/377632 to your computer and use it in GitHub Desktop.

Select an option

Save skylar/377632 to your computer and use it in GitHub Desktop.
// in core.js...
Klb.PARTNER_QUERY = SC.Query.local(Klb.Partner);
Klb.LOAN_QUERY = SC.Query.local(Klb.Country, {conditions: 'status = "fundraising"', orderBy: ['dateAdded']});
// in controller...
availablePartners: null,
availableCountries: null,
primeData: function() {
...
this.set('availablePartners', Klb.store.find(Klb.PARTNER_QUERY));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment