Update Backbone/Underscore vendor folders.

Former-commit-id: 3317d501fe535d91eefab8a5dcb3a88a791e20ac
This commit is contained in:
John-David Dalton
2012-10-06 20:56:42 -07:00
parent b3d68893df
commit b07ef98c8f
6 changed files with 53 additions and 9 deletions

View File

@@ -1234,8 +1234,8 @@
// memory leaks.
dispose: function() {
this.undelegateEvents();
if (this.model) this.model.off(null, null, this);
if (this.collection) this.collection.off(null, null, this);
if (this.model && this.model.off) this.model.off(null, null, this);
if (this.collection && this.collection.off) this.collection.off(null, null, this);
return this;
},