(options)
| 31 | } |
| 32 | |
| 33 | async onOpenEditor(options) { |
| 34 | await this.createPeer('editorController'); |
| 35 | if (await this.peers.editorController.getPopup()) { |
| 36 | await this.peers.editorController.activateComponent(); |
| 37 | return; |
| 38 | } |
| 39 | options.recipientsTo ||= []; |
| 40 | options.recipientsCc ||= []; |
| 41 | this.openEditor(options); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Opens a new editor control and gets the recipients to encrypt plaintext |
no test coverage detected