Index: nodecarousel.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/nodecarousel/nodecarousel.module,v retrieving revision 1.4.2.5 diff -u -r1.4.2.5 nodecarousel.module --- nodecarousel.module 19 Apr 2008 23:10:04 -0000 1.4.2.5 +++ nodecarousel.module 8 Apr 2009 15:53:50 -0000 @@ -1516,6 +1516,12 @@ jQuery('div#nc_last_%d').click(function(e) { carousel.scroll($("#nc_" + carouselName + " li").length, true); }); + // Pause autoscrolling if the user moves with the cursor over the clip. + carousel.clip.hover(function() { + carousel.stopAuto(); + }, function() { + carousel.startAuto(); + }); INIT; // If there is an index control, this block of text causes it to be created in javascript.