File "scrollBar.js"

Full Path: /home/ycoalition/public_html/blog/wp-content/themes/woodmart/js/scripts/global/scrollBar.js
File size: 289 bytes
MIME-type: text/plain
Charset: utf-8

/* global woodmart_settings */

(function($) {
	woodmartThemeModule.siteScroll = function() {
		if ( window.innerWidth > woodmartThemeModule.windowWidth ) {
			$('html').addClass('wd-scrollbar');
		}
	};

	$(document).ready(function() {
		woodmartThemeModule.siteScroll();
	});
})(jQuery);