(ev)
| 97 | } |
| 98 | |
| 99 | onEditorButton(ev) { |
| 100 | this.emailTextElement.removeEventListener('keypress', this.handleKeypress); |
| 101 | this.eFrame.querySelector('.m-encrypt-container').classList.add('active'); |
| 102 | this.showMailEditor(); |
| 103 | ev.stopPropagation(); |
| 104 | } |
| 105 | |
| 106 | onMailEditorClose() { |
| 107 | this.eFrame.querySelector('.m-encrypt-container').classList.remove('active'); |
nothing calls this directly
no test coverage detected