Skip to content

Instantly share code, notes, and snippets.

@joegaudet
Created December 22, 2011 00:47
Show Gist options
  • Save joegaudet/1508404 to your computer and use it in GitHub Desktop.
Save joegaudet/1508404 to your computer and use it in GitHub Desktop.
var B = {
foo: function(){
sc_super();
console.log("Foo B");
}
};
var A = SC.Object.extend(B, {
foo: function(){
console.log("Foo A");
}
});
A.create().foo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment