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.Views.Admin.Users.Form = (function(superClass) { extend(Form, superClass); function Form(opts) { if (opts == null) { opts = {}; } Form.__super__.constructor.call(this, opts); this.user = opts.user; } Form.prototype.render = function() { var form; form = new App.UI.Form({ "for": this.user, initObj: true, id: "admin_user_form" }); return form.render(); }; return Form; })(App.Views.Base); }).call(this); :ET