()
| 126 | } |
| 127 | |
| 128 | async onEditorLoad() { |
| 129 | if (this.ports.editorCont) { |
| 130 | this.ports.editorCont.emit('editor-ready'); |
| 131 | } else { |
| 132 | // non-container case, set options |
| 133 | this.onEditorOptions({options: this.options}); |
| 134 | // transfer recipient proposal and public key info to the editor |
| 135 | await this.setRecipientData(this.options.recipients); |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Set the recipient data in the editor. |
nothing calls this directly
no test coverage detected