Nice plugin, but i noticed that autoplay doesn't work. To activate this setting, you should to add
autoplay: ". $this->settings['autoplay'] ." to SliderController.php.
Example:
$javaScript = " var swiper_" . $contentObj->data['uid'] ." = new Swiper ('#" . $sliderCssId . "', { direction: 'horizontal', autoplay: ". $this->settings['autoplay'] .", autoHeight: " . ('auto' == $this->settings['height'] || 'autoMin' == $this->settings['height'] ? 'true' : 'false') . "," . ('fixed' == $this->settings['height'] ? 'height: ' . $pixels . ',' : '') . "loop: " . ($this->settings['loop'] ? 'true' : 'false') . ",";
Nice plugin, but i noticed that autoplay doesn't work. To activate this setting, you should to add