Improve window UI

This commit is contained in:
2020-04-10 13:57:43 +02:00
parent c3226a4fe1
commit f1399d2aef
2 changed files with 18 additions and 2 deletions

View File

@ -49,7 +49,7 @@ class CallWindow extends CustomEvents {
this.closeButton = createElem2({
appendTo: windowHead.querySelector(".pull-right"),
type: "a",
innerHTML: "<i class='fa fa-cross'></i>",
innerHTML: "<i class='fa fa-times'></i>",
onclick: () => this.Close()
})
@ -65,6 +65,6 @@ class CallWindow extends CustomEvents {
this.rootEl.remove();
if(propagate)
this.emitEvent("closed");
this.emitEvent("close");
}
}