Update table/profiles to match the at a glance box
Add edit columns toggle for mobile
This commit is contained in:
fraxle
2026-06-10 13:58:19 +01:00
parent 10452115d7
commit 1857cd9f3b
6 changed files with 108 additions and 36 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ function rewriteHTML(html, version) {
html = html.replace(/<script\s[^>]*src=["'][^"']*assets\/js\/[^"']*["'][^>]*><\/script>/gi, '');
// Rewrite standalone about.css reference to versioned minified file.
html = html.replace(
/(<link\s[^>]*href=["'][^"']*assets\/)about\.css(["'][^>]*>)/gi,
/(<link\s[^>]*href=["'][^"']*assets\/)about\.css[^"']*(["'][^>]*>)/gi,
'$1about.min.css?v=' + version + '$2'
);
const css = ' <link rel="stylesheet" href="./assets/bundle.min.css?v=' + version + '">';