Skip to content

Instantly share code, notes, and snippets.

@ttdonovan
Created February 10, 2009 21:18
Show Gist options
  • Select an option

  • Save ttdonovan/61596 to your computer and use it in GitHub Desktop.

Select an option

Save ttdonovan/61596 to your computer and use it in GitHub Desktop.
// ==========================================================================
// OrionFw.ManyToManyController
// ==========================================================================
require('core');
OrionFw.ManyToManyController = SC.Controller.extend({
init: function() {
sc_super();
this._firstEntityController = SC.ArrayController.create();
this._linkEntityController = SC.ArrayController.create();
this._secondEntityController = SC.ArrayController.create();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment