Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
immortalist
/
wp-content
/
themes
/
woodmart
/
js
/
scripts
/
global
:
scrollBar.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
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); }