Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
avvy
web-app-avvy
Commits
9d57514b
Commit
9d57514b
authored
4 months ago
by
Vlad Gaydukov
Browse files
Options
Download
Email Patches
Plain Diff
revert cells
parent
224bb8ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src_app/base/objectsStorage.js
+2
-2
src_app/base/objectsStorage.js
with
2 additions
and
2 deletions
+2
-2
src_app/base/objectsStorage.js
View file @
9d57514b
...
...
@@ -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
()
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help