I have unselected the option to pause the slideshow when the user hovers the cursor over the image but it still pauses regardless.
http://lccc.simon-davies.com/

Comments

ppblaauw’s picture

I had a look at the advanced options before and that was working, but see now you use the basic options.
Will have a look at it tomorrow (its late here)

ppblaauw’s picture

Status: Active » Needs review

In ddblock.js
change:

        //set pause, true to enable "pause on hover"
        if (ddblockSettings.pause) {
           options.pause = ddblockSettings.pause;
        }

to

        //set pause, true to enable "pause on hover"
        options.pause = (ddblockSettings.pause == 1) ? 1 : 0;

hope this helps you further, please let me know.

zincdesign’s picture

Yep, that works a treat. Thanks : )

ppblaauw’s picture

Status: Needs review » Fixed

Thanks for testing!
Committed to dev version and new rc1 version.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.