Skip to content

Instantly share code, notes, and snippets.

@dreammonkey
Created October 8, 2014 09:02
Show Gist options
  • Save dreammonkey/b0af05f104b55a4d07f7 to your computer and use it in GitHub Desktop.
Save dreammonkey/b0af05f104b55a4d07f7 to your computer and use it in GitHub Desktop.
(function() {
var Button = function(label) {
this.initialize(label);
}
var p = Button.prototype = new createjs.Container();
Button.prototype.Container_initialize = p.initialize;
Button.prototype.initialize = function(label) {
this.Container_initialize();
// add custom setup logic here.
}
window.Button = Button;
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment