news.tatooine.club/_includes/hide.js

9 lines
384 B
JavaScript
Raw Normal View History

let x = localStorage.getItem('hiddenTopics');
let hiddenTopics = x ? JSON.parse(x) : [];
// Create a new style element that hides all
// elements with the data-topic=$topic attribute
innerStyle = "";
for (let topic of hiddenTopics) {
innerStyle += `.topic-${topic} {display:none} `;
}
2023-10-15 18:34:31 +00:00
document.head.insertAdjacentHTML("beforeend", `<style id="hidden-style">${innerStyle}</style>`)