1
0
mirror of git://f0xx.org/ac/ac-be-hub synced 2026-08-09 20:59:23 +03:00

Hub globe v2: mercator wrap, GPU path, landing layout updates.

Refine 3D globe rendering, layer CSS, landing page wiring and TOC UX.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Anton Afanasyeu
2026-08-07 22:15:46 +02:00
parent 78d5911e48
commit c54919189c
7 changed files with 1404 additions and 199 deletions

View File

@@ -108,7 +108,7 @@
document.body.addEventListener('click', function (ev) {
var t = ev.target.closest('[data-goto-page]');
if (!t) return;
if (t.tagName === 'A' && t.getAttribute('href') === '#') {
if (t.tagName === 'A') {
ev.preventDefault();
}
setActivePage(Number(t.getAttribute('data-goto-page')));