webcron/assets/js/job/Utils.js

12 lines
316 B
JavaScript
Raw Normal View History

2022-06-08 13:24:46 +02:00
let Utils = {};
Utils.initTags = () => {
document.querySelectorAll('.tag').forEach(elem => {
let backcolor = elem.dataset.backgroundColor;
let frontcolor = elem.dataset.color;
elem.style.backgroundColor = backcolor;
elem.style.color = frontcolor;
})
}
export default Utils;