mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-06-25 16:19:19 +02:00
- repertoire.css: add min-height: 0 to column <ul> scroll containers so grid 1fr row shrinks below content and overflow-y: auto activates - admin-toc.js: add __adminTocBuilt guard + nav.children check to prevent double population when loaded both via admin.min.js and direct <script> - admin-toc.php: remove duplicate <script src="admin-toc.js"> tag — JS is already bundled in admin.min.js
14 lines
437 B
PHP
14 lines
437 B
PHP
<?php
|
|
/**
|
|
* admin-toc.php — sidebar table-of-contents for long admin pages.
|
|
*
|
|
* Rendered as an <aside> inside <main>, before the <article> content.
|
|
* Uses IntersectionObserver to highlight the active section.
|
|
*/
|
|
?>
|
|
<aside id="admin-toc" class="admin-toc" aria-label="Sur cette page">
|
|
<nav class="admin-toc-list" id="admin-toc-list">
|
|
<!-- populated by JS (admin-toc.js, loaded via admin.min.js) -->
|
|
</nav>
|
|
</aside>
|