Sha256: e06fda665b3eadc67583313aad7a0cd8a15e112267d169a0fe83e4f31e202466
Contents?: true
Size: 924 Bytes
Versions: 3
Compression:
Stored size: 924 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.Views.Admin.Comments.Form = (function(superClass) { extend(Form, superClass); function Form(opts) { if (opts == null) { opts = {}; } Form.__super__.constructor.call(this, opts); this.comment = null; } Form.prototype.render = function(opts) { var form; if (opts == null) { opts = {}; } form = new App.UI.Form({ id: "edit_comment_" + opts.commentId, "for": this.article }); return form.render(); }; return Form; })(App.Views.Base); }).call(this); :ET
Version data entries
3 entries across 3 versions & 1 rubygems