Andre D. Lima

Results 13 comments of Andre D. Lima

@lucari94 This works well but it would be cool to have the step following the responsive settings, so we could have scrolling by the number of items displayed at each...

I managed to do what I wanted like this: ```javascript this.carousel.on('run.before', evt => { const scrollSteps = this.carousel.settings.perView; evt.steps = evt.direction === '>' ? -scrollSteps : scrollSteps; }); ``` It...

It seems to be due to @PiotrSiatkowski using ES6 syntax, that is not supported by Node 5 or lower. Since these versions already reached End-of-Life ( https://github.com/nodejs/Release#release-schedule ) do you...