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; Quby.Collections.QuestionOptions = (function(superClass) { extend(QuestionOptions, superClass); function QuestionOptions() { return QuestionOptions.__super__.constructor.apply(this, arguments); } QuestionOptions.prototype.model = Quby.Models.QuestionOption; return QuestionOptions; })(Backbone.Collection); }).call(this); :ET