()
| 84 | } |
| 85 | |
| 86 | inlineDialog() { |
| 87 | this.vDialog = document.createElement('iframe'); |
| 88 | this.vDialog.id = `vDialog-${this.id}`; |
| 89 | this.vDialog.src = chrome.runtime.getURL(`components/decrypt-message/decryptMessage.html?id=${this.id}`); |
| 90 | this.vDialog.frameBorder = 0; |
| 91 | this.vDialog.scrolling = 'no'; |
| 92 | this.vDialog.classList.add('m-frame-dialog'); |
| 93 | this.eFrame.append(this.vDialog); |
| 94 | this.setFrameDim(); |
| 95 | this.vDialog.classList.add('m-show'); |
| 96 | } |
| 97 | |
| 98 | popupDialog() { |
| 99 | this.port.emit('vframe-display-popup'); |
no test coverage detected