Skip to content

Instantly share code, notes, and snippets.

@xenophy
Created November 11, 2011 04:03
Show Gist options
  • Save xenophy/1357164 to your computer and use it in GitHub Desktop.
Save xenophy/1357164 to your computer and use it in GitHub Desktop.
Next JS Module Dynamic Bind
module.exports = {
execute: function() {
var me = this;
me.bind('mod1', function() {
me.mod1.foo(function(ret) {
me.dump(ret);
me.end();
});
});
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment