MCPcopy Create free account
hub / github.com/mailvelope/mailvelope / inlineDialog

Method inlineDialog

src/content-scripts/decryptFrame.js:76–86  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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');

Callers 1

onShowMethod · 0.95

Calls 2

setFrameDimMethod · 0.95
addMethod · 0.80

Tested by

no test coverage detected