show current camps on start page

This commit is contained in:
Jottyfan
2022-10-01 22:28:08 +02:00
parent d15a6af941
commit cfe4edcf15
12 changed files with 402 additions and 10 deletions

View File

@ -0,0 +1,8 @@
class MyToggle {
constructor() {
}
toggle(divid) {
$("[id='" + divid + "']").toggle();
}
}