This commit is contained in:
Jake Paul
2025-11-23 00:01:12 -06:00
commit 1c45c7f7cd
16 changed files with 452 additions and 0 deletions

9
static/threads.js Normal file
View File

@@ -0,0 +1,9 @@
// threads.js
// by lua (zav@tbdpowered.net)
function toggleContent(contentId, toggleElement) {
$("." + contentId).toggle();
var $toggle = $(toggleElement);
$toggle.text( ($toggle.text() == '[-]' ? '[+]' : '[-]') );
}