(e: JQuery.ClickEvent)
| 85 | } |
| 86 | |
| 87 | private onClickCallback(e: JQuery.ClickEvent) { |
| 88 | this.isOutputCurrentSelection = this.contentRoot[0].contains(e.target); |
| 89 | } |
| 90 | |
| 91 | private onKeydownCallback(e: JQuery.KeyDownEvent) { |
| 92 | if (this.isOutputCurrentSelection && e.ctrlKey && e.key === 'a') { |
no test coverage detected