salvi/static/content.js

9 lines
164 B
JavaScript
Raw Normal View History

(function() {
for (let i of document.getElementsByClassName('spoiler')) {
i.onclick = function() {
this.classList.toggle('revealed');
}
};
})();