fix the js only thing

This commit is contained in:
blek 2023-12-22 23:11:29 +10:00
parent 517ddfafb7
commit 6af6158057
Signed by: blek
GPG Key ID: 14546221E3595D0C
2 changed files with 7 additions and 0 deletions

View File

@ -20,6 +20,10 @@ h3 {
}
}
.js-only {
display: none;
}
a, a:visited {
color: #00a8a8;
}

View File

@ -43,5 +43,8 @@
</div>
<script src='/script/cursor.min.js' type='application/javascript'></script>
<script>
for(var jsel=document.getElementsByClassName("js-only"),i=0;i<jsel.length;i++){var el=jsel.item(i);null!=el&&(el.className=el.className.replace("js-only",""))}delete jsel,delete i,delete el
</script>
</body>
</html>