????

Your IP : 18.224.184.62


Current Path : /home/multihiv/www/store/wp-content/themes/js/scripts/global/
Upload File :
Current File : //home/multihiv/www/store/wp-content/themes/js/scripts/global/scrollBar.js

var observer = new MutationObserver(() => {
	if ( window.innerWidth > document.getElementsByTagName( 'html' )[0].offsetWidth ) {
		document.getElementsByTagName( 'html' )[0].className += ' wd-scrollbar';
		observer.disconnect();
	}
});

window.addEventListener('load',function() {
	observer.disconnect();
});

observer.observe(document.getElementsByTagName( 'html' )[0], {childList : true,  subtree: true});