Commit 9d57514b authored by Vlad Gaydukov's avatar Vlad Gaydukov
Browse files

revert cells

parent 224bb8ac
Showing with 2 additions and 2 deletions
+2 -2
......@@ -20,7 +20,7 @@ ObjectsStorage.prototype.add = function (item, fillCells = true) {
if (!id) throw 'Invalid object';
this.items[id] = item;
// if (fillCells) this.cells.add(item)
if (fillCells) this.cells.add(item)
};
ObjectsStorage.prototype.remove = function (item, clearCells = true) {
......@@ -28,7 +28,7 @@ ObjectsStorage.prototype.remove = function (item, clearCells = true) {
if (!id) throw 'Invalid id';
delete this.items[id];
// if (clearCells) this.cells.remove(item)
if (clearCells) this.cells.remove(item)
};
ObjectsStorage.prototype.getAll = function () {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment