1.0.3 • Published 8 years ago

backbone-deepextend v1.0.3

Weekly downloads
7
License
MIT
Repository
github
Last release
8 years ago

backbone-deepextend

A Backbone extend implementation that merges properties rather than overrides\". Useful for inheritting defaults and other attributes which are objects on a model.

Travis build status Code Climate Test Coverage Dependency Status devDependency Status

This module should be imported before any models that need this functionality are derived as <Class>.extend is written on all objects on creation time.

require('backbone-deepextend');

var Model = Backbone.Model.extend({
    defaults: {
        a: 1
    }
}).extend({
    defaults: {
        b: 2
    }
})

var model = new Model;
model.get('a') // => 1
model.get('b') // => 2