* @param {CssSelector} selector - target container * @param {string} keyringId - the keyring to use for this operation * @param {object} options * @constructor
(selector, keyringId, options)
| 14 | * @constructor |
| 15 | */ |
| 16 | constructor(selector, keyringId, options) { |
| 17 | this.selector = selector; |
| 18 | this.keyringId = keyringId; |
| 19 | this.options = options; |
| 20 | this.id = getUUID(); |
| 21 | this.port = EventHandler.connect(`keyGenCont-${this.id}`, this); |
| 22 | this.registerEventListener(); |
| 23 | this.parent = null; |
| 24 | this.container = null; |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * Create an iframe |
nothing calls this directly
no test coverage detected