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.9 diff -u -p -r1.1.2.1.2.9 views_slideshow.js --- contrib/views_slideshow_singleframe/views_slideshow.js 26 Sep 2009 22:20:50 -0000 1.1.2.1.2.9 +++ contrib/views_slideshow_singleframe/views_slideshow.js 27 Sep 2009 05:14:51 -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.4 diff -u -p -r1.1.2.1.2.4 views_slideshow_singleframe.views_slideshow.inc --- contrib/views_slideshow_singleframe/views_slideshow_singleframe.views_slideshow.inc 26 Sep 2009 22:20:50 -0000 1.1.2.1.2.4 +++ contrib/views_slideshow_singleframe/views_slideshow_singleframe.views_slideshow.inc 27 Sep 2009 05:14:51 -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']['cleartype'] = array( '#type' => 'radios', '#title' => t('ClearType'), 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.8 diff -u -p -r1.1.2.2.2.8 views_slideshow.js --- contrib/views_slideshow_thumbnailhover/views_slideshow.js 26 Sep 2009 22:20:50 -0000 1.1.2.2.2.8 +++ contrib/views_slideshow_thumbnailhover/views_slideshow.js 27 Sep 2009 05:14:51 -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']['cleartype'] = array( '#type' => 'radios', '#title' => t('ClearType'),