API Docs for:
Show:

Extendable Class

Functions to set up the prototype chain by saving a refecence to Backbone.Model.extend.

var Animal = function(name) {
 this.name = name;
};
_.extend(Animal, BackboneSurvey.Extendable);
var Bird = Animal.extend({
 fly: function() { return "Fly! " + this.name; }
}):

Item Index