type out Dialog

This commit is contained in:
MathMan05 2024-09-08 17:47:36 -05:00
parent fc9d4d8d6f
commit b57988e734
2 changed files with 235 additions and 205 deletions

View file

@ -22,11 +22,11 @@ class Dialog {
const img = document.createElement("img");
img.src = array[1];
if (array[2] != undefined) {
if (array[2].length == 2) {
if (array[2].length === 2) {
img.width = array[2][0];
img.height = array[2][1];
}
else if (array[2][0] == "fit") {
else if (array[2][0] === "fit") {
img.classList.add("imgfit");
}
}
@ -226,6 +226,7 @@ class Dialog {
}
default:
console.error("can't find element:" + array[0], " full element:", array);
return document.createElement("span");
}
}
show() {