Created
September 8, 2012 01:52
-
-
Save truemagic-coder/3671287 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
(function() { | |
var BatApp, | |
__hasProp = {}.hasOwnProperty, | |
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; | |
BatApp = (function(_super) { | |
__extends(BatApp, _super); | |
function BatApp() { | |
return BatApp.__super__.constructor.apply(this, arguments); | |
} | |
BatApp.BatData = new Batman.Set; | |
BatApp.BatClear = function() { | |
return this.BatData.clear(); | |
}; | |
BatApp.BatPush = function(data) { | |
return this.BatData.add(data); | |
}; | |
window.BatApp = BatApp; | |
return BatApp; | |
})(Batman.App); | |
}).call(this); | |
window.BatApp.run(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment