chore: prettier
This commit is contained in:
parent
0c9c79195a
commit
109545d006
1 changed files with 2 additions and 6 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue