Skip to content

Instantly share code, notes, and snippets.

@jo
Created January 11, 2011 14:00
Show Gist options
  • Save jo/774436 to your computer and use it in GitHub Desktop.
Save jo/774436 to your computer and use it in GitHub Desktop.
use CouchDB _id
var oldSet = Backbone.Model.prototype.set;
_.extend(Backbone.Model.prototype, {
set: function(attrs, options) {
if ('_id' in attrs) this.id = attrs._id;
oldSet.apply(this, [attrs, options]);
return this;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment