Skip to content

Add support for backbone 0.9.9 #59

@dwt

Description

@dwt

At least the override of Model::clone is broken at https://github.com/janmonschke/backbone-couchdb/blob/master/backbone-couchdb.js#L298 where is should use this.attributes as 0.9.9 is more strict about the arguments it takes for the constructor.

More might be broken - but thats what we found in a quick survey.

Our workaround:

Backbone.Model::clone = ->
  new_model = new @constructor(@attributes)
  if new_model.attributes._id
    delete new_model.attributes._id
  if new_model.attributes._rev
    delete new_model.attributes._rev
  new_model

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions