Browse Source

Fixes removed event oldData items. (#2535)

fix2580
Zachariah Brown 7 years ago
committed by yotamberk
parent
commit
70710f430b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/DataView.js

+ 1
- 1
lib/DataView.js View File

@ -108,7 +108,7 @@ DataView.prototype.refresh = function () {
id = oldIds[i];
if (!newIds[id]) {
removedIds.push(id);
removedItems.push(this._data[id]);
removedItems.push(this._data._data[id]);
delete this._ids[id];
}
}

Loading…
Cancel
Save