Names refactoring

This commit is contained in:
barsdeveloper
2022-12-10 14:48:27 +01:00
parent 153f329bdd
commit fffe3f7ad1
18 changed files with 159 additions and 89 deletions

View File

@@ -41,10 +41,10 @@ export default class WindowElement extends IDraggableElement {
disconnectedCallback() {
super.disconnectedCallback()
this.dispatchCloseEvent()
this.acknowledgeClose()
}
dispatchCloseEvent() {
acknowledgeClose() {
let deleteEvent = new CustomEvent(Configuration.windowCloseEventName)
this.dispatchEvent(deleteEvent)
}