Update vendor/backbone to v1.3.3.

This commit is contained in:
John-David Dalton
2016-04-05 14:11:35 -07:00
parent 55e7b8764e
commit 5e2f113d50
3 changed files with 8 additions and 3 deletions

View File

@@ -1898,7 +1898,7 @@
assert.deepEqual(changed.merged, []);
assert.ok(changed.removed.length === 2);
assert.ok(changed.removed.indexOf(model) > -1 && changed.removed.indexOf(model2) > -1);
assert.ok(_.indexOf(changed.removed, model) > -1 && _.indexOf(changed.removed, model2) > -1);
});
collection.remove([model, model2]);
});

View File

@@ -14,6 +14,11 @@
className: 'test-view',
other: 'non-special-option'
});
},
afterEach: function() {
$('#testElement').remove();
$('#test-view').remove();
}
});