(state: ToolState & MonacoPaneState)
| 300 | } |
| 301 | |
| 302 | override registerButtons(state: ToolState & MonacoPaneState) { |
| 303 | super.registerButtons(state); |
| 304 | |
| 305 | this.wrapButton = this.domRoot.find('.wrap-lines'); |
| 306 | this.wrapTitle = this.wrapButton.prop('title'); |
| 307 | |
| 308 | this.panelArgs = this.domRoot.find('.panel-args'); |
| 309 | this.panelStdin = this.domRoot.find('.panel-stdin'); |
| 310 | |
| 311 | this.initButtonsVisibility(state); |
| 312 | } |
| 313 | |
| 314 | initButtonsVisibility(state: ToolState & MonacoPaneState) { |
| 315 | this.toggleArgs = this.domRoot.find('.toggle-args'); |
no test coverage detected