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.10 diff -u -p -r1.1.2.1.2.10 views_slideshow.js --- contrib/views_slideshow_singleframe/views_slideshow.js 28 Sep 2009 20:50:12 -0000 1.1.2.1.2.10 +++ contrib/views_slideshow_singleframe/views_slideshow.js 28 Sep 2009 21:02:45 -0000 @@ -42,6 +42,28 @@ Drupal.behaviors.viewsSlideshowSingleFra settings.opts.fx = settings.effect; } + /** + * Add additional settings. + */ + var advanced = settings.advanced.split("\n"); + for (i=0; i 0) { 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.5 diff -u -p -r1.1.2.1.2.5 views_slideshow_singleframe.views_slideshow.inc --- contrib/views_slideshow_singleframe/views_slideshow_singleframe.views_slideshow.inc 28 Sep 2009 20:50:12 -0000 1.1.2.1.2.5 +++ contrib/views_slideshow_singleframe/views_slideshow_singleframe.views_slideshow.inc 28 Sep 2009 21:02:45 -0000 @@ -131,6 +131,12 @@ function views_slideshow_singleframe_vie '#default_value' =>(isset($view->options['singleframe']['sync'])) ? $view->options['singleframe']['sync'] : 1, '#description' => t('The sync option controls whether the slide transitions occur simultaneously. The default is yes which means that the current slide transitions out as the next slide transitions in. By setting the sync option to no you can get some interesting twists on your transitions.'), ); + $form['singleframe']['advanced'] = array( + '#type' => 'textarea', + '#title' => t('Advanced Options'), + '#default_value' =>(isset($view->options['singleframe']['advanced'])) ? $view->options['singleframe']['advanced'] : '', + '#description' => t('Add other jQuery cycle options one per line. Ex. height: 350 !url', array('!url' => l('Click here for the additional options to add.', 'http://malsup.com/jquery/cycle/options.html'))), + ); $form['singleframe']['ie'] = array( '#type' => 'fieldset', '#title' => t('Internet Explorer Options'), 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.9 diff -u -p -r1.1.2.2.2.9 views_slideshow.js --- contrib/views_slideshow_thumbnailhover/views_slideshow.js 28 Sep 2009 20:50:12 -0000 1.1.2.2.2.9 +++ contrib/views_slideshow_thumbnailhover/views_slideshow.js 28 Sep 2009 21:02:45 -0000 @@ -50,6 +50,28 @@ Drupal.behaviors.viewsSlideshowThumbnail else { settings.opts.fx = settings.effect; } + + /** + * Add additional settings. + */ + var advanced = settings.advanced.split("\n"); + for (i=0; i$view->options['thumbnailhover']['sync'], '#description' => t('The sync option controls whether the slide transitions occur simultaneously. The default is yes which means that the current slide transitions out as the next slide transitions in. By setting the sync option to no you can get some interesting twists on your transitions.'), ); + $form['thumbnailhover']['advanced'] = array( + '#type' => 'textarea', + '#title' => t('Advanced Options'), + '#default_value' =>(isset($view->options['thumbnailhover']['advanced'])) ? $view->options['thumbnailhover']['advanced'] : '', + '#description' => t('Add other jQuery cycle options one per line. Ex. height: 350 !url', array('!url' => l('Click here for the additional options to add.', 'http://malsup.com/jquery/cycle/options.html'))), + ); $form['thumbnailhover']['ie'] = array( '#type' => 'fieldset', '#title' => t('Internet Explorer Options'),