Skip to content

Instantly share code, notes, and snippets.

@renepardon
Created August 17, 2012 14:21
Show Gist options
  • Save renepardon/3379042 to your computer and use it in GitHub Desktop.
Save renepardon/3379042 to your computer and use it in GitHub Desktop.
// Inheritance
var ListController = function () {
this.parent = new GlobalController();
this.init();
};
// Multiple inheritance
var ListController = function () {
this.parent = new GlobalController();
this.super = new MasterController();
this.init();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment