(rootElement: HTMLElement)
| 72 | } |
| 73 | |
| 74 | onRenderHTML(rootElement: HTMLElement): void { |
| 75 | const ui = ( |
| 76 | <ButtonGroup orientation={this.props.orientation}> |
| 77 | <IconButton |
| 78 | onClick={() => this.handleZoomIn()} |
| 79 | label={this.props.zoomInLabel} |
| 80 | className="deck-widget-zoom-in" |
| 81 | /> |
| 82 | <IconButton |
| 83 | onClick={() => this.handleZoomOut()} |
| 84 | label={this.props.zoomOutLabel} |
| 85 | className="deck-widget-zoom-out" |
| 86 | /> |
| 87 | </ButtonGroup> |
| 88 | ); |
| 89 | render(ui, rootElement); |
| 90 | } |
| 91 | |
| 92 | isOrthographicView(viewId: string): boolean { |
| 93 | const deck = this.deck; |
nothing calls this directly
no test coverage detected