Cycle: Pager activeState keeps on ticking during pause
Hello,
I'm using fresh-off-the-press 2.83 version of Cycle, and I'm finding that the pager keeps on ticking along even when the cycle is paused. Is this a feature, or a bug, or something I can work around?
Here's my call:
- $('#rotator').cycle({
- speed: 2000,
- timeout: 8000,
- delay: -5500,
- pager: '#pager',
- pause: true,
- cleartype: true,
- cleartypeNoBg: true
- });
I also have a pause-on-click going on with this call:
- $('#pager a').click( function() {
- $('#rotator').cycle('pause');
- });
In both cases, on Linux and Windows browsers, the pager activeState class keeps moving through the slides even though the slides aren't advancing.
Help?
Thanks!
Rob