smooth scrolling

This commit is contained in:
overcuriousity 2025-07-29 22:54:29 +02:00
parent fcab1485f5
commit 3a60c63a84
2 changed files with 11 additions and 6 deletions

View File

@ -2023,7 +2023,7 @@ tools:
- ewfacquire - ewfacquire
domain-agnostic-software: null domain-agnostic-software: null
skillLevel: intermediate skillLevel: intermediate
accessType: built-in accessType: Linux (GNU-Utils)
url: https://www.gnu.org/software/coreutils/dd url: https://www.gnu.org/software/coreutils/dd
projectUrl: '' projectUrl: ''
license: GPL-3.0 license: GPL-3.0
@ -2436,7 +2436,7 @@ tools:
related_software: null related_software: null
domain-agnostic-software: null domain-agnostic-software: null
skillLevel: novice skillLevel: novice
accessType: built-in accessType: Linux (GNU-Utils)
url: https://docs.microsoft.com/en-us/sysinternals/downloads/strings url: https://docs.microsoft.com/en-us/sysinternals/downloads/strings
projectUrl: '' projectUrl: ''
license: Proprietary/GPL license: Proprietary/GPL
@ -4407,8 +4407,8 @@ tools:
- Linux - Linux
- macOS - macOS
- Windows - Windows
accessType: builtin accessType: Linux (GNU-Utils)
license: "GPL\_v3" license: GPL v3
knowledgebase: false knowledgebase: false
- name: hashdeep - name: hashdeep
type: software type: software
@ -4783,8 +4783,8 @@ tools:
- scenario:remote_access - scenario:remote_access
related_concepts: null related_concepts: null
platforms: platforms:
- "Web\_(crossplatform)" - Web
- "Dedicated\_Hardware" - Hardware
accessType: purchase accessType: purchase
license: Proprietär license: Proprietär
knowledgebase: false knowledgebase: false

View File

@ -296,6 +296,11 @@ const phases = data.phases;
break; break;
} }
// Add smooth scrolling to filters section after layout settles
setTimeout(() => {
window.scrollToElementById('filters-section');
}, 150);
if (window.location.search) { if (window.location.search) {
window.history.replaceState({}, '', window.location.pathname); window.history.replaceState({}, '', window.location.pathname);
} }