()
| 78 | } |
| 79 | |
| 80 | inlineDialog() { |
| 81 | this.dDialog = document.createElement('iframe'); |
| 82 | this.dDialog.id = `dDialog-${this.id}`; |
| 83 | this.dDialog.src = chrome.runtime.getURL(`components/decrypt-message/decryptMessage.html?id=${this.id}`); |
| 84 | this.dDialog.frameBorder = 0; |
| 85 | this.dDialog.scrolling = 'no'; |
| 86 | this.dDialog.classList.add('m-frame-dialog'); |
| 87 | this.eFrame.append(this.dDialog); |
| 88 | this.setFrameDim(); |
| 89 | this.dDialog.classList.add('m-show'); |
| 90 | } |
| 91 | |
| 92 | popupDialog() { |
| 93 | this.port.emit('dframe-display-popup'); |
no test coverage detected