stop conflicting tooltips

master
Aevann 2023-10-26 19:29:54 +03:00
parent 2fb0f49bd4
commit 141d2a9598
2 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ function giveaward(t) {
document.getElementById('award_price').textContent = `${ownednum} owned`; document.getElementById('award_price').textContent = `${ownednum} owned`;
} }
else { else {
ownedblock.innerHTML = `${global_price} <img loading="lazy" alt="coins" class="mr-1 ml-1 award-currency" data-bs-toggle="tooltip" data-bs-placement="bottom" src="${SITE_FULL_IMAGES}/i/rDrama/coins.webp?x=6" title="Coins">/<img loading="lazy" alt="marseybux" class="mr-1 ml-1 award-currency" data-bs-toggle="tooltip" data-bs-placement="bottom" src="${SITE_FULL_IMAGES}/i/marseybux.webp?x=6" title="Marseybux">` ownedblock.innerHTML = `${global_price} <img loading="lazy" alt="coins" class="mr-1 ml-1 award-currency" src="${SITE_FULL_IMAGES}/i/rDrama/coins.webp?x=6">/<img loading="lazy" alt="marseybux" class="mr-1 ml-1 award-currency" src="${SITE_FULL_IMAGES}/i/marseybux.webp?x=6">`
document.getElementById('award_price').textContent = `Price: ${global_price} coins/marseybux`; document.getElementById('award_price').textContent = `Price: ${global_price} coins/marseybux`;
} }
} }

View File

@ -30,7 +30,7 @@
{% if award.owned %} {% if award.owned %}
<span>{{award.owned}} owned</span> <span>{{award.owned}} owned</span>
{% else %} {% else %}
<span>{{price}}</span> <img loading="lazy" alt="coins" class="mr-1 ml-1 award-currency" data-bs-toggle="tooltip" data-bs-placement="bottom" src="{{SITE_FULL_IMAGES}}/i/rDrama/coins.webp?x=6" title="Coins">/<img loading="lazy" alt="marseybux" class="mr-1 ml-1 award-currency" data-bs-toggle="tooltip" data-bs-placement="bottom" src="{{SITE_FULL_IMAGES}}/i/marseybux.webp?x=6" title="Marseybux"> <span>{{price}}</span> <img loading="lazy" alt="coins" class="mr-1 ml-1 award-currency" src="{{SITE_FULL_IMAGES}}/i/rDrama/coins.webp?x=6">/<img loading="lazy" alt="marseybux" class="mr-1 ml-1 award-currency" src="{{SITE_FULL_IMAGES}}/i/marseybux.webp?x=6">
{% endif %} {% endif %}
</div> </div>
</div> </div>