(part: string | null)
| 544 | } |
| 545 | |
| 546 | getElem(part: string | null): HTMLElement | null { |
| 547 | if (part == null) { |
| 548 | return document.querySelector(`#note-${this.id}`); |
| 549 | } else { |
| 550 | return document.querySelector(`#note-${this.id} .${part}`); |
| 551 | } |
| 552 | } |
| 553 | getElems(part: string | null): HTMLElement[] { |
| 554 | if (part == null) { |
| 555 | return Array.from(document.querySelectorAll(`#note-${this.id}`)); |
no outgoing calls
no test coverage detected