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.Sessions = (function(superClass) { extend(Sessions, superClass); function Sessions() { return Sessions.__super__.constructor.apply(this, arguments); } Sessions.prototype["new"] = function() { var view; view = new App.Views.Admin.Sessions.Form; return view.render(); }; return Sessions; })(App.Controllers.Base); }).call(this); :ET