Index: contrib/views_slideshow_singleframe/views_slideshow.js =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/views_slideshow/contrib/views_slideshow_singleframe/Attic/views_slideshow.js,v retrieving revision 1.1.2.1.2.5 diff -u -p -r1.1.2.1.2.5 views_slideshow.js --- contrib/views_slideshow_singleframe/views_slideshow.js 16 Sep 2009 05:22:14 -0000 1.1.2.1.2.5 +++ contrib/views_slideshow_singleframe/views_slideshow.js 18 Sep 2009 21:22:17 -0000 @@ -17,6 +17,7 @@ Drupal.behaviors.viewsSlideshowSingleFra settings.opts = { speed:settings.speed, timeout:parseInt(settings.timeout), + delay:parseInt(settings.delay), sync:settings.sync==1, random:settings.random==1, pause:settings.pause==1, Index: contrib/views_slideshow_singleframe/views_slideshow_singleframe.views_slideshow.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/views_slideshow/contrib/views_slideshow_singleframe/Attic/views_slideshow_singleframe.views_slideshow.inc,v retrieving revision 1.1.2.1.2.2 diff -u -p -r1.1.2.1.2.2 views_slideshow_singleframe.views_slideshow.inc --- contrib/views_slideshow_singleframe/views_slideshow_singleframe.views_slideshow.inc 15 Sep 2009 06:18:58 -0000 1.1.2.1.2.2 +++ contrib/views_slideshow_singleframe/views_slideshow_singleframe.views_slideshow.inc 18 Sep 2009 21:22:17 -0000 @@ -40,6 +40,12 @@ function views_slideshow_singleframe_vie '#default_value' => (isset($view->options['singleframe']['timeout'])) ? $view->options['singleframe']['timeout'] : 1000, '#description' => t('Amount of time in milliseconds between transitions.') ); + $form['singleframe']['delay'] = array( + '#type' => 'textfield', + '#title' => t('Initial slide delay offset'), + '#default_value' => (isset($view->options['singleframe']['delay'])) ? $view->options['singleframe']['delay'] : 0, + '#description' => t('Amount of time in milliseconds for the first slide to transition. This number will be added to Timer delay to create the initial delay. For example if Timer delay is 4000 and Initial delay is 2000 then the first slide will change at 6000ms (6 seconds). If Initial delay is -2000 then the first slide will change at 2000ms (2 seconds).') + ); $form['singleframe']['speed'] = array( '#type' => 'textfield', '#title' => t('Speed'), Index: contrib/views_slideshow_thumbnailhover/views_slideshow.js =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/views_slideshow/contrib/views_slideshow_thumbnailhover/Attic/views_slideshow.js,v retrieving revision 1.1.2.2.2.4 diff -u -p -r1.1.2.2.2.4 views_slideshow.js --- contrib/views_slideshow_thumbnailhover/views_slideshow.js 16 Sep 2009 05:22:14 -0000 1.1.2.2.2.4 +++ contrib/views_slideshow_thumbnailhover/views_slideshow.js 18 Sep 2009 21:22:17 -0000 @@ -16,6 +16,7 @@ Drupal.behaviors.viewsSlideshowThumbnail settings.opts = { speed:settings.speed, timeout:parseInt(settings.timeout), + delay:parseInt(settings.delay), sync:settings.sync==1, random:settings.random==1, pause:settings.pause==1, Index: contrib/views_slideshow_thumbnailhover/views_slideshow_thumbnailhover.views_slideshow.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/views_slideshow/contrib/views_slideshow_thumbnailhover/Attic/views_slideshow_thumbnailhover.views_slideshow.inc,v retrieving revision 1.1.2.1.2.3 diff -u -p -r1.1.2.1.2.3 views_slideshow_thumbnailhover.views_slideshow.inc --- contrib/views_slideshow_thumbnailhover/views_slideshow_thumbnailhover.views_slideshow.inc 15 Sep 2009 06:18:58 -0000 1.1.2.1.2.3 +++ contrib/views_slideshow_thumbnailhover/views_slideshow_thumbnailhover.views_slideshow.inc 18 Sep 2009 21:22:17 -0000 @@ -73,6 +73,12 @@ function views_slideshow_thumbnailhover_ '#default_value' => $view->options['thumbnailhover']['timeout'], '#description' => t('Amount of time in milliseconds between transitions.'), ); + $form['thumbnailhover']['delay'] = array( + '#type' => 'textfield', + '#title' => t('Initial slide delay offset'), + '#default_value' => (isset($view->options['thumbnailhover']['delay'])) ? $view->options['thumbnailhover']['delay'] : 0, + '#description' => t('Amount of time in milliseconds for the first slide to transition. This number will be added to Timer delay to create the initial delay. For example if Timer delay is 4000 and Initial delay is 2000 then the first slide will change at 6000ms (6 seconds). If Initial delay is -2000 then the first slide will change at 2000ms (2 seconds).') + ); $form['thumbnailhover']['speed'] = array( '#type' => 'textfield', '#title' => t('Speed'),