generator-mc-d8-theme
Version:
Yeoman generator for creating Drupal 8 component based themes.
22 lines (19 loc) • 358 B
JavaScript
/**
* @file
* Behaviors for the Carousel.
*/
!((Drupal, $) => {
'use strict';
/**
* Setup and attach the Carousel behaviors.
*
* @type {Drupal~behavior}
*/
Drupal.behaviors.carousel = {
attach: function() {
$('.carousel__slick').not('.slick-initialized').slick({
dots: true,
});
},
};
})(Drupal, jQuery);