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.Mix(App.Controllers.Base, App.Mixins.Disconnection)); }).call(this); :ET