D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
raptqcnr
/
www
/
wp-content
/
themes
/
woodmart
/
js
/
scripts
/
global
/
Filename :
scrollBar.js
back
Copy
const htmlElement = document.getElementsByTagName('html')[0]; const windowWidth = window.innerWidth; if (windowWidth > 1024 && windowWidth > htmlElement.offsetWidth) { const scrollbarWidth = window.innerWidth - htmlElement.offsetWidth; const styleElement = document.createElement('style'); styleElement.textContent = `:root {--wd-scroll-w: ${scrollbarWidth}px;}`; document.head.appendChild(styleElement); }