Sha256: a641af61ce95e9e0871d9c1291bb600037f258638ca1c24cd9589c0e07b5c4d5
Contents?: true
Size: 797 Bytes
Versions: 52
Compression:
Stored size: 797 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.Controllers.Admin.Comments = (function(superClass) { extend(Comments, superClass); function Comments() { return Comments.__super__.constructor.apply(this, arguments); } Comments.prototype.edit = function() { var view; view = new App.Views.Admin.Comments.Form; return view.render({ commentId: this.params.id }); }; return Comments; })(App.Controllers.Base); }).call(this); :ET
Version data entries
52 entries across 26 versions & 1 rubygems