top of page
CHASE & STATUS
BICEP
STORMZY
LILY ALLEN
FATBOY SLIM
NIA ARCHIVES
ANDY C
SUBFOCUS & DIMENSION
HYBRID MINDS
YEARS & YEARS
KELIS
SUGABABES
GIRLS DON'T SYNC
WILKINSON
ELIZA ROSE
FOUR TET
HEDEX
FOLAMOUR
KURUPT FM
CASISDEAD
MURA MASA
PATRICK TOPPING
EATS EVERYTHING
DJ EZ
HOLY GOOF
JYOTY
OVERMONO
SHY FX
KATY B
SOLARDO
SKREAM

$w.onReady(function () {

    InitUniqueTagRepeater();

});

 

function InitUniqueTagRepeater() {

    $w("#datasetUniqueTag").onReady(() => {

        console.log("The dataset is ready");

 

        $w('#repeaterUniqueTag').onItemReady(($item, itemData) => {

            $item('#boxBGColor').style.backgroundColor = "#" + itemData.cardColor;

            changeTextColor($item, 'textTitle', "#" + itemData.textColor);

        })

    });

}

 

function changeTextColor($item, inputId, color) {

    let textInput = $item('#' + inputId);  // Use $item context to target specific repeater item

    let realText = textInput.text;

    textInput.text = '    ';

    var html = textInput.html;

    let newHtml = html.replace(/>/g, ' style="color: ' + color + '">');

    textInput.html = newHtml;

    textInput.text = realText;

}

bottom of page