-
-
Save notmatt/2897994 to your computer and use it in GitHub Desktop.
Revisions
-
notmatt revised this gist
Jun 8, 2012 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,7 @@ 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(){ -
silentrob revised this gist
Jun 8, 2012 . 1 changed file with 3 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,17 +1,16 @@ FMWK.button = function() { var _this = this; 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 -
silentrob created this gist
Jun 8, 2012 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ FMWK.button = function() { var _this = this; 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 = FMWK.button(); var b2 = FMWK.button(); b1.hide() // fires on b2