backbone-couchdb icon indicating copy to clipboard operation
backbone-couchdb copied to clipboard

Add support for backbone 0.9.9

Open dwt opened this issue 13 years ago • 1 comments

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

dwt avatar Dec 21 '12 17:12 dwt

+1

paulkoegel avatar Feb 08 '13 21:02 paulkoegel