()
| 472 | } |
| 473 | |
| 474 | delete() { |
| 475 | this.page.collab.doc.transact(() => { |
| 476 | this.removeFromRegion(); |
| 477 | |
| 478 | if (this.page.collab.store.arrows[this.id] != null) { |
| 479 | delete this.page.collab.store.arrows[this.id]; |
| 480 | } |
| 481 | }); |
| 482 | } |
| 483 | |
| 484 | getHitboxElem(): SVGPathElement | null { |
| 485 | return document.querySelector(`#arrow-${this.id} > .arrow-hitbox`); |
no test coverage detected