@internal call this to call onChange callback with dirty nodes so DOM can be updated
(removedNodes?: GridStackNode[])
| 643 | |
| 644 | /** @internal call this to call onChange callback with dirty nodes so DOM can be updated */ |
| 645 | protected _notify(removedNodes?: GridStackNode[]): GridStackEngine { |
| 646 | if (this.batchMode || !this.onChange) return this; |
| 647 | const dirtyNodes = (removedNodes || []).concat(this.getDirtyNodes()); |
| 648 | this.onChange(dirtyNodes); |
| 649 | return this; |
| 650 | } |
| 651 | |
| 652 | /** |
| 653 | * Clean all dirty and last tried information from nodes. |
no test coverage detected