From 38fb879e7150023eddc86bccf76e42ae481c8ff7 Mon Sep 17 00:00:00 2001 From: Robert MacWha Date: Mon, 11 Aug 2025 15:03:33 -0400 Subject: [PATCH 1/2] update images to avoid cs warning --- src/config/contributors.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/config/contributors.json b/src/config/contributors.json index 644f7a9b..39f4f17d 100644 --- a/src/config/contributors.json +++ b/src/config/contributors.json @@ -3,7 +3,7 @@ "slug": "mattaereal", "name": "matta", "role": "lead", - "avatar": "https://github.com/mattaereal.png", + "avatar": "https://avatars.githubusercontent.com/mattaereal", "github": "https://github.com/mattaereal", "twitter": "https://twitter.com/mattaereal", "website": "https://theredguild.org", @@ -15,7 +15,7 @@ "slug": "fredriksvantes", "name": "Fredrik Svantes", "role": "core", - "avatar": "https://github.com/fredriksvantes.png", + "avatar": "https://avatars.githubusercontent.com/fredriksvantes", "github": "https://github.com/fredriksvantes", "twitter": "https://twitter.com/fredriksvantes", "website": "https://ethereum.org", @@ -27,7 +27,7 @@ "slug": "zedt3ster", "name": "zedt3ster", "role": "core", - "avatar": "https://github.com/zedt3ster.png", + "avatar": "https://avatars.githubusercontent.com/zedt3ster", "github": "https://github.com/zedt3ster", "twitter": "https://twitter.com/ethzed", "website": "https://sigmaprime.io", @@ -50,7 +50,7 @@ "slug": "robert", "name": "Robert MacWha", "role": "core", - "avatar": "https://github.com/Robert-MacWha.png", + "avatar": "https://avatars.githubusercontent.com/Robert-MacWha", "github": "https://github.com/robert-macwha", "twitter": null, "website": "https://robertmacwha.ca/", @@ -62,7 +62,7 @@ "slug": "tebayoso", "name": "tebayoso", "role": "contributor", - "avatar": "https://github.com/tebayoso.png", + "avatar": "https://avatars.githubusercontent.com/tebayoso", "github": "https://github.com/tebayoso", "twitter": "https://twitter.com/tebayoso", "company": "The Red Guild", @@ -72,7 +72,7 @@ "slug": "engn33r", "name": "engn33r", "role": "contributor", - "avatar": "https://github.com/engn33r.png", + "avatar": "https://avatars.githubusercontent.com/engn33r", "github": "https://github.com/engn33r", "twitter": "https://twitter.com/bl4ckb1rd71", "description": "Signing best practices" @@ -81,7 +81,7 @@ "slug": "ghadi8", "name": "Ghadi Mhawej", "role": "steward", - "avatar": "https://github.com/ghadi8.png", + "avatar": "https://avatars.githubusercontent.com/ghadi8", "github": "https://github.com/ghadi8", "twitter": "https://twitter.com/ghadi8798", "job_title": "Creator and maintainer of the ENS framework", @@ -92,7 +92,7 @@ { "slug": "patrickalphac", "name": "Patrick Collins", - "avatar": "https://github.com/patrickalphac.png", + "avatar": "https://avatars.githubusercontent.com/patrickalphac", "github": "https://github.com/patrickalphac", "twitter": "https://twitter.com/patrickalphac", "website": "https://cyfrin.io", @@ -104,7 +104,7 @@ { "slug": "pinalikefruit", "name": "PiƱa", - "avatar": "https://github.com/pinalikefruit.png", + "avatar": "https://avatars.githubusercontent.com/pinalikefruit", "github": "https://github.com/pinalikefruit", "twitter": "https://x.com/pinalikefruit", "role": "steward", @@ -116,7 +116,7 @@ "slug": "dickson", "name": "Dickson Wu", "role": "contributor", - "avatar": "https://github.com/DicksonWu654.png", + "avatar": "https://avatars.githubusercontent.com/DicksonWu654", "github": "https://github.com/DicksonWu654", "twitter": "https://x.com/DicksonWuML", "website": "https://skylock.xyz/", @@ -124,4 +124,4 @@ "job_title": "Safe Harbor", "description": "Safe Harbor contributor" } -] +] \ No newline at end of file From dacc7a600f9dc26b1abf4454c701a91c2a716d16 Mon Sep 17 00:00:00 2001 From: Robert MacWha Date: Mon, 11 Aug 2025 15:05:02 -0400 Subject: [PATCH 2/2] tidy: remove unused func --- theme/main.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/theme/main.js b/theme/main.js index e80795f9..e78b8f0c 100644 --- a/theme/main.js +++ b/theme/main.js @@ -1,7 +1,7 @@ const bookmarkPrefix = "bookmarks_"; const tagPrefix = "tag_"; -// TODO: Find a way to pass tags metadata into handlebars, so we can initiatize tags at build time +// TODO: Find a way to pass tags metadata into handlebars, so we can initialize tags at build time window.addEventListener("load", () => { updateBookmarkIcon(); @@ -9,9 +9,6 @@ window.addEventListener("load", () => { addBookmarkedToTags(); createSearchableTags(); - // Ensure text wraps tightly around contributors boxes - ensureContributorBoxWrapping(); - //* Setup event listeners for dropdowns & tags const tagsToggle = document.getElementById('tags-toggle'); const tagsDropdown = document.getElementById('tags-dropdown');