Fix Face URI quoting

This commit is contained in:
Adam Goldsmith 2017-10-12 21:38:59 -04:00
parent f5f9392ada
commit e54734ae4b

View File

@ -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);