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.Comments.Form = (function(superClass) { extend(Form, superClass); function Form(opts) { if (opts == null) { opts = {}; } Form.__super__.constructor.call(this, opts); } Form.prototype.render = function(opts) { var form; if (opts == null) { opts = {}; } form = new App.UI.Form({ "for": new App.Models.Article.Comment({ id: opts.commentId, resource: 'admin' }), id: "edit_comment_" + opts.commentId, initObj: true }); return form.render(); }; return Form; })(App.Views.Base); }).call(this); :ET