Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- import $ from 'jquery';
- import 'jquery.easing';
- import Slider from "../slider/slider";
-
- class IHKETLSlider {
- constructor(section) {
- this.section = section.addClass('initiated');
- this.slides = section.children();
- this.slider = new Slider(section.find('.eventteaserlargeslider'));
- this.stringLength = 0;
- }
- }
-
- export default IHKETLSlider;
-
- $('body').on('ihk-init dynamic-component-loaded gfi-dynamic-init', function () {
- $('.rotationslider:not(.initiated)').each(function() {
- new IHKETLSlider($(this));
- });
- });
-
|