()
| 116 | } |
| 117 | |
| 118 | updateStyle(): void { |
| 119 | this.svg.attr( |
| 120 | 'class', |
| 121 | addClass(this.svg.attr('class'), 'markmap', this.state.id), |
| 122 | ); |
| 123 | const style = this.getStyleContent(); |
| 124 | this.styleNode.text(style); |
| 125 | } |
| 126 | |
| 127 | handleZoom = (e: any) => { |
| 128 | const { transform } = e; |
no test coverage detected