Reaperxxxx commited on
Commit
c04ae9e
·
verified ·
1 Parent(s): cd1d690

Update docs.html

Browse files
Files changed (1) hide show
  1. docs.html +9 -8
docs.html CHANGED
@@ -1620,14 +1620,6 @@
1620
  });
1621
  }
1622
 
1623
-
1624
- function toggleDetails(id, button) {
1625
- const details = document.getElementById(id);
1626
- const isVisible = details.style.display === 'block';
1627
-
1628
- details.style.display = isVisible ? 'none' : 'block';
1629
- button.textContent = isVisible ? '▼ Show Details' : '▲ Hide Details';
1630
- }
1631
 
1632
  // Display group stats
1633
  const groupsContainer = document.getElementById('groupsContainer');
@@ -1892,5 +1884,14 @@
1892
  }
1893
  });
1894
  </script>
 
 
 
 
 
 
 
 
 
1895
  </body>
1896
  </html>
 
1620
  });
1621
  }
1622
 
 
 
 
 
 
 
 
 
1623
 
1624
  // Display group stats
1625
  const groupsContainer = document.getElementById('groupsContainer');
 
1884
  }
1885
  });
1886
  </script>
1887
+ <script>
1888
+ function toggleDetails(id, button) {
1889
+ const details = document.getElementById(id);
1890
+ const isVisible = details.style.display === 'block';
1891
+
1892
+ details.style.display = isVisible ? 'none' : 'block';
1893
+ button.textContent = isVisible ? '▼ Show Details' : '▲ Hide Details';
1894
+ }
1895
+ </script>
1896
  </body>
1897
  </html>