madeyourday / rocksolid-slider

RockSolid Slider jQuery Plugin
http://rocksolidthemes.com/de/contao/plugins/responsive-slider
MIT License
4 stars 1 forks source link

Disable dragging if all slides are visible #34

Closed ausi closed 8 years ago

ausi commented 8 years ago

Similar to #25

aschempp commented 8 years ago

I've added the following code at the top of my rsts_* template to fix this:

<?php
    if (count($this->slides) < 2) {
        $this->options = array_replace($this->options, ['type' => 'fade']);
    }
?>