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.34 diff -u -p -r1.1.2.1.2.34 views_slideshow.js --- contrib/views_slideshow_singleframe/views_slideshow.js 18 May 2010 05:16:07 -0000 1.1.2.1.2.34 +++ contrib/views_slideshow_singleframe/views_slideshow.js 29 May 2010 03:19:34 -0000 @@ -223,8 +223,12 @@ Drupal.theme.prototype.viewsSlideshowPag return '
'; } -Drupal.theme.prototype.viewsSlideshowPagerNumbered = function (classes, idx, slide) { - return '
' + (idx+1) + '
'; +Drupal.theme.prototype.viewsSlideshowPagerNumbered = function (classes, idx, slide, settings) { + var href = '#'; + if (settings.pager_click_to_page) { + href = $(slide).find('a').attr('href'); + } + return '
' + (idx+1) + '
'; } // Verify that the value is a number.