chore: prettier

This commit is contained in:
Yohan Boniface 2024-05-23 18:26:36 +02:00
parent 0c9c79195a
commit 109545d006

View file

@ -4,11 +4,7 @@ import { translate } from '../i18n.js'
export default class Dialog {
constructor(parent) {
this.parent = parent
this.container = DomUtil.create(
'dialog',
'umap-dialog',
this.parent
)
this.container = DomUtil.create('dialog', 'umap-dialog', this.parent)
DomEvent.disableClickPropagation(this.container)
DomEvent.on(this.container, 'contextmenu', DomEvent.stopPropagation) // Do not activate our custom context menu.
DomEvent.on(this.container, 'wheel', DomEvent.stopPropagation)
@ -23,7 +19,7 @@ export default class Dialog {
this.container.close()
}
open({className, content, modal} = {}) {
open({ className, content, modal } = {}) {
this.container.innerHTML = ''
if (modal) this.container.showModal()
else this.container.show()