Sha256: 6c475b6a07d551dde129470c5df1ec9ecc925064f590780966c0ddcf88fdc41a
Contents?: true
Size: 708 Bytes
Versions: 19
Compression:
Stored size: 708 Bytes
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.Collections == null) { ELA.Collections = {}; } ELA.Collections.Curves = (function(superClass) { extend(Curves, superClass); function Curves() { return Curves.__super__.constructor.apply(this, arguments); } Curves.prototype.model = ELA.Models.Curve; return Curves; })(ELA.Collections.LimitedCollection); }).call(this);
Version data entries
19 entries across 19 versions & 1 rubygems