Fix Face URI quoting
This commit is contained in:
parent
f5f9392ada
commit
e54734ae4b
@ -255,7 +255,7 @@ function makeCard(cardNum) {
|
|||||||
card.style.backgroundPositionY =
|
card.style.backgroundPositionY =
|
||||||
-Math.floor(cardNum/deckWidth) * parseInt(style.getPropertyValue("height")) + "px";
|
-Math.floor(cardNum/deckWidth) * parseInt(style.getPropertyValue("height")) + "px";
|
||||||
let faceURI = encodeURI(deckJSON.CustomDeck[deckNum].FaceURL);
|
let faceURI = encodeURI(deckJSON.CustomDeck[deckNum].FaceURL);
|
||||||
card.style.backgroundImage = `url(${faceURI})`;
|
card.style.backgroundImage = `url("${faceURI}")`;
|
||||||
card.style.backgroundSize = `${deckWidth * 100}% ${deckHeight * 100}%`;
|
card.style.backgroundSize = `${deckWidth * 100}% ${deckHeight * 100}%`;
|
||||||
document.body.removeChild(card);
|
document.body.removeChild(card);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user