Created
March 11, 2013 08:09
-
-
Save robkuz/5132709 to your computer and use it in GitHub Desktop.
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
| A = (function() { | |
| function A() { | |
| var _this = this; | |
| this.somemethod = function(paramlist) { | |
| return A.prototype.somemethod.apply(_this, arguments); | |
| }; | |
| } | |
| A.prototype.somemethod = function(paramlist) { | |
| return doSomethingHere(); | |
| }; | |
| return A; | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment