BZModalDialog

This commit is contained in:
STEINNI
2026-04-07 16:10:42 +00:00
parent 158e9c4044
commit 0cc03cf512
7 changed files with 156 additions and 5 deletions

View File

@@ -106,8 +106,10 @@ window.debugEditor = this
</section>
</div>
`
this.slidePane.querySelector('button[data-trigger="onExportFlow"]').addEventListener('click', this.onExportFlow.bind(this))
this.slidePane.querySelector('button[data-trigger="onImportFlow"]').addEventListener('click', this.onImportFlow.bind(this))
this.onImportFlow = this.onImportFlow.bind(this)
this.onExportFlow = this.onExportFlow.bind(this)
this.slidePane.querySelector('button[data-trigger="onExportFlow"]').addEventListener('click', (e) => this.onExportFlow(e)) // indirect so override works !
this.slidePane.querySelector('button[data-trigger="onImportFlow"]').addEventListener('click', (e) => this.onImportFlow(e))// indirect so override works !
}
refreshNodes(e){