<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">define(['jquery', 'modules/utils', 'flickity', 'jquery.nicescroll'], function($, Utils) {

	var $horizontalScrollElements = $(".horizontal-scroll-area");

	var ScrollAreas = {

		initialize : function() {
			this.horizontalScrolls();
		},

		horizontalScrolls : function() {
			// $horizontalScrollElements.flickity({
			// 	cellSelector: 'a',
			// 	draggable: true,
			// 	prevNextButtons: false,
			// 	accessibility: false,
			// 	pageDots: false,
			// 	autoPlay: false,
			// 	wrapAround: false,
			// 	setGallerySize: true,
			// 	cellAlign: 'left'
			// });
			$horizontalScrollElements.niceScroll();
		}

	}

	// return object method
	return ScrollAreas;

});</pre></body></html>