Hello. I can get the hover breakout mode with controls showing to be paused on default by futzing around with the .cyclePause settings in jquery.cycle.all.min.js but that is definitely a very hackish solution...

A) Any way to pause the slideshow by default with an external piece of javascript?

B) Could I request that a "paused by default" checkbox be added to the views interface?

Thanks!!!

CommentFileSizeAuthor
#2 757510-start_paused-1.patch5.43 KBredndahead
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

redndahead’s picture

Status: Active » Postponed
$('#views_slideshow_singleframe_teaser_section_1').cycle('pause');
    $('#views_slideshow_singleframe_playpause_1').unbind('click');
    $('#views_slideshow_singleframe_playpause_1').click(function() {
      $('#views_slideshow_singleframe_teaser_section_1').cycle('resume');
      $('#views_slideshow_singleframe_playpause_1').text(Drupal.t('Pause'));
      return false;
    });
    $('#views_slideshow_singleframe_playpause_1').text(Drupal.t('Resume'));

this should pause it if you are using the controls. You'll need to adjust the id's for your slideshow. Seems like a reasonable request so I'm going to postpone it for a future release.

redndahead’s picture

Status: Postponed » Needs review
FileSize
5.43 KB

Here is a patch for beginning the slideshow paused.

redndahead’s picture

Status: Needs review » Fixed

This patch has been committed.

Status: Fixed » Closed (fixed)

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