madeyourday/rocksolid-slider

Disable dragging if all slides are visible

Closed this issue · 1 comments

ausi commented

Similar to #25

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']);
    }
?>