Difference between revisions of "MediaWiki:Common.js"

From Dungeon Defenders 2 Wiki
Jump to: navigation, search
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
  
/* Replaces the word "gems" with the gem icon in texts where gem costs are mentioned */
+
/* Replaces currency keywords (gold, gems, defender medals) with their icon in texts which include currency costs */
Array.from(document.getElementsByClassName('gem-cost-included')).forEach(function (element) {
+
Array.from(document.getElementsByClassName('currency-included')).forEach(function (element) {
     element.innerHTML = element.innerHTML.replace(/gems\s*?(\d+)|(\d+)\s*?gems/gi, '<a href="/wiki/File:Gem_Icon.png" class="image"><img alt="Gem Icon.png" src="/images/8/8d/Gem_Icon.png" width="18" height="15"></a> $1$2')
+
     element.innerHTML = element.innerHTML.replace(/gems?\s*?([\d,]+)|([\d,]+)\s*?gems?/gi, '<a href="/wiki/File:Gem_Icon.png" class="image"><img alt="Gem Icon.png" src="/images/8/8d/Gem_Icon.png" width="18"></a> $1$2')
 +
    element.innerHTML = element.innerHTML.replace(/gold\s*?([\d,]+)|([\d,]+)\s*?gold/gi, '<a href="/wiki/File:Gold_Icon.png" class="image"><img alt="Gold Icon.png" src="/images/2/26/Gold_Icon.png" width="18"></a> $1$2')
 +
    element.innerHTML = element.innerHTML.replace(/defender medals?\s*?([\d,]+)|([\d,]+)\s*?defender medals?/gi, '<a href="/wiki/File:Defender_Medal_Icon.png" class="image"><img alt="Defender Medal Icon.png" src="/images/a/a7/Defender_Medal_Icon.png" width="18"></a> $1$2')
 
})
 
})

Revision as of 14:17, 15 February 2023

/* Any JavaScript here will be loaded for all users on every page load. */

/* Replaces currency keywords (gold, gems, defender medals) with their icon in texts which include currency costs */
Array.from(document.getElementsByClassName('currency-included')).forEach(function (element) {
    element.innerHTML = element.innerHTML.replace(/gems?\s*?([\d,]+)|([\d,]+)\s*?gems?/gi, '<a href="/wiki/File:Gem_Icon.png" class="image"><img alt="Gem Icon.png" src="/images/8/8d/Gem_Icon.png" width="18"></a> $1$2')
    element.innerHTML = element.innerHTML.replace(/gold\s*?([\d,]+)|([\d,]+)\s*?gold/gi, '<a href="/wiki/File:Gold_Icon.png" class="image"><img alt="Gold Icon.png" src="/images/2/26/Gold_Icon.png" width="18"></a> $1$2')
    element.innerHTML = element.innerHTML.replace(/defender medals?\s*?([\d,]+)|([\d,]+)\s*?defender medals?/gi, '<a href="/wiki/File:Defender_Medal_Icon.png" class="image"><img alt="Defender Medal Icon.png" src="/images/a/a7/Defender_Medal_Icon.png" width="18"></a> $1$2')
})