(node: GridStackNode)
| 991 | } |
| 992 | |
| 993 | public beginUpdate(node: GridStackNode): GridStackEngine { |
| 994 | if (!node._updating) { |
| 995 | node._updating = true; |
| 996 | delete node._skipDown; |
| 997 | if (!this.batchMode) this.saveInitial(); |
| 998 | } |
| 999 | return this; |
| 1000 | } |
| 1001 | |
| 1002 | public endUpdate(): GridStackEngine { |
| 1003 | const n = this.nodes.find(n => n._updating); |
no test coverage detected