Sha256: b7eca02b1cea775d37b03bb4c415661b3921ea5fbd3dc18152964e01f113cc0b
Contents?: true
Size: 681 Bytes
Versions: 11
Compression:
Stored size: 681 Bytes
Contents
I"(function() { var extend = 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; }, hasProp = {}.hasOwnProperty; App.Controllers.Admin = (function(superClass) { extend(Admin, superClass); function Admin() { return Admin.__super__.constructor.apply(this, arguments); } Admin.prototype.initialize = function() { return this.setScope('admin'); }; return Admin; })(App.Controllers.Base); }).call(this); :ET
Version data entries
11 entries across 4 versions & 1 rubygems