Cycle: Pager activeState keeps on ticking during pause

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:
  1.   $('#rotator').cycle({
  2.     speed: 2000,
  3.     timeout: 8000,
  4.     delay: -5500,
  5.     pager: '#pager',
  6.     pause: true,
  7.     cleartype: true,
  8.     cleartypeNoBg: true
  9.   });
I also have a pause-on-click going on with this call:
  1.   $('#pager a').click( function() {
  2.     $('#rotator').cycle('pause');
  3.   });
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