Lines Matching refs:dialog
4 #dialog;
25 this.#dialog = this.createDialog();
27 parent.appendChild(this.#dialog);
30 this.#dialog.showModal();
39 const dialog = document.createElement('dialog');
40 dialog.className = 'golocal-dialog';
43 dialog.appendChild(main);
58 dialog.appendChild(footer);
78 dialog.addEventListener('close', this.onClose.bind(this));
79 return dialog;
92 this.#dialog.close();
98 this.#dialog.remove();