1
0
mirror of https://gitlab.com/Anson-Projects/projects.git synced 2025-07-27 00:21:34 +00:00

FIx Dev Container

This commit is contained in:
2025-05-14 11:02:43 -07:00
parent 388adf4a02
commit 609d4064a9
15 changed files with 391 additions and 2672 deletions

File diff suppressed because one or more lines are too long

View File

@@ -2,7 +2,8 @@ const kProgressiveAttr = "data-src";
let categoriesLoaded = false;
window.quartoListingCategory = (category) => {
category = atob(category);
// category is URI encoded in EJS template for UTF-8 support
category = decodeURIComponent(atob(category));
if (categoriesLoaded) {
activateCategory(category);
setCategoryHash(category);