Sha256: 93277e796b7ff0ed73d5e41b983a52c75292f1d72a250c1ea8979f0b555f59b6
Contents?: true
Size: 1.01 KB
Versions: 19
Compression:
Stored size: 1.01 KB
Contents
(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; if (ELA.Views == null) { ELA.Views = {}; } ELA.Views.CurvesListItem = (function(superClass) { extend(CurvesListItem, superClass); function CurvesListItem() { return CurvesListItem.__super__.constructor.apply(this, arguments); } CurvesListItem.prototype.labelParameters = function() { return { label: this.Present(this.model).label() }; }; CurvesListItem.prototype.initialize = function() { CurvesListItem.__super__.initialize.apply(this, arguments); return this.model.on("change:" + this.selectedAttribute, this.render); }; return CurvesListItem; })(Backbone.Poised.List.SelectableItem); }).call(this);
Version data entries
19 entries across 19 versions & 1 rubygems