This commit is contained in:
parent
cfb21e7dcb
commit
40f038bfb9
1 changed files with 36 additions and 30 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
window.addEventListener("load", () => main());
|
||||||
|
|
||||||
|
const main = () => {
|
||||||
for (const item of document.getElementsByTagName("img")) {
|
for (const item of document.getElementsByTagName("img")) {
|
||||||
// Check if we may need to resize the image
|
// Check if we may need to resize the image
|
||||||
const possible_piece = item.alt.split(/\s?\|\s?/);
|
const possible_piece = item.alt.split(/\s?\|\s?/);
|
||||||
|
@ -19,7 +22,9 @@ for (const item of document.getElementsByTagName("img")) {
|
||||||
verif[1] == "x" &&
|
verif[1] == "x" &&
|
||||||
verif[2] == ""
|
verif[2] == ""
|
||||||
) {
|
) {
|
||||||
[item.width, item.height] = last_possible_piece.split("x");
|
[w, h] = last_possible_piece.split("x");
|
||||||
|
item.width = w;
|
||||||
|
item.height = h;
|
||||||
item.alt = possible_piece.join("");
|
item.alt = possible_piece.join("");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -31,3 +36,4 @@ for (const item of document.getElementsByTagName("img")) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in a new issue