Skip to content

Instantly share code, notes, and snippets.

@lnt
Created December 4, 2014 15:52
Show Gist options
  • Save lnt/c70d1261fcd73000ff19 to your computer and use it in GitHub Desktop.
Save lnt/c70d1261fcd73000ff19 to your computer and use it in GitHub Desktop.
Sample Parent Module
utils.define("persontest",function(persontest,_person_){
var person = utils.module("person");
var person_form = utils.module("person_form");
persontest._ready_ = function(){
this.person = person.instance().init($("#person_module"));
this.person_from = person_form.instance().init($("#person_form_module"));
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment