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