From 48b3061301e9ce23bbd0211b5e3e9970782a5aef Mon Sep 17 00:00:00 2001 From: Codex Bot Date: Tue, 24 Mar 2026 15:09:13 +0100 Subject: [PATCH] Fix homepage section scroll links --- website_example/pages/home.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website_example/pages/home.html b/website_example/pages/home.html index d2d4b5b..6d4a46b 100644 --- a/website_example/pages/home.html +++ b/website_example/pages/home.html @@ -15,13 +15,13 @@
- + Getting Started - + Pool Blocks - + FAQ
@@ -717,7 +717,7 @@ $('#heroMinerAddress').keyup(function(e) { }); $('.home-scroll').click(function(e) { e.preventDefault(); - let target = $(this).attr('href'); + let target = $(this).data('target'); let el = document.querySelector(target); if (el) { el.scrollIntoView({ behavior: 'smooth', block: 'start' });