Update text editor

This commit is contained in:
2020-10-19 18:10:54 +02:00
parent 9825535637
commit 55c2f66709
9 changed files with 811 additions and 171 deletions

View File

@@ -31,7 +31,7 @@ function Modal(parent, closeCallback, title, width, height) {
this.btnClose = document.createElement("button")
this.btnClose.classList = "modal_btn_close button_red"
this.btnClose.innerHTML = '<i class="icon small">close</i>'
this.btnClose.innerHTML = '<i class="icon">close</i>'
this.btnClose.addEventListener("click", e => { this.close() })
this.body = document.createElement("div")