diff --git a/fes.js b/fes.js index e13485d..836cbc7 100644 --- a/fes.js +++ b/fes.js @@ -219,8 +219,8 @@ pin.style.top = `${(d.y * 100).toFixed(4)}%`; const pinImg = document.createElement('img'); - pinImg.src = 'images/pin-16×16.png'; - pinImg.alt = ''; + pinImg.src = 'images/pin-16x16.png'; + pinImg.alt = 'images/pin-16x16.png'; pin.appendChild(pinImg); // tooltip (card) @@ -249,7 +249,7 @@ const thumb = document.createElement('img'); thumb.className = 'tooltip-thumb'; // support relative path or absolute; if CSV image empty, use placeholder - thumb.src = d.image ? d.image : 'images/drink-16×16.png'; + thumb.src = d.image ? d.image : 'images/drink-16x16.png'; thumb.alt = d.name || ''; const descP = document.createElement('p'); @@ -338,7 +338,7 @@ const thumb = document.createElement('img'); thumb.className = 'shop-thumb'; - thumb.src = d.image ? d.image : 'images/drink-16×16.png'; + thumb.src = d.image ? d.image : 'images/drink-16x16.png'; thumb.alt = d.name || ''; const meta = document.createElement('div');