-
-
Save notmatt/2897994 to your computer and use it in GitHub Desktop.
Broken code.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FMWK = { 'hulk' : 'smash' } | |
FMWK.button = function() { | |
var _this = this; | |
console.log(this.hasOwnProperty('hulk') ? "HULK SMASH" : ""); | |
this.el = document.createElement('button'); | |
['hide','show'].forEach(function(method){ | |
FMWK.button.prototype[method] = function(){ | |
$(_this.el)[method].apply($(_this.el), Array.prototype.slice.call(arguments)); | |
} | |
}); | |
return this; | |
} | |
var b1 = new FMWK.button(); | |
var b2 = new FMWK.button(); | |
b1.hide() // fires on b2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment