Changeset 16906
- Timestamp:
- 04/02/09 16:21:39 (4 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/pkMediaCMSSlotsPlugin/trunk/modules/pkContextCMSSlideshow/templates/_normalView.php
r16892 r16906 44 44 </ul> 45 45 46 <?php if (count($items) > 1): ?> 46 47 <script type='text/javascript'> 47 48 $(function() { … … 51 52 52 53 $('.pk-context-media-show li.pk-context-media-show-item').click(function() { 54 55 $(this).attr('title','Click For Next Image →'); 56 53 57 if (position <= img_count) 54 58 { … … 56 60 if (position == img_count+1 ) { position = 0; } 57 61 $('.pk-context-media-show-item').hide(); 58 $('#pk-context-media-show-item-'+position).fadeIn('slow'); 62 $('#pk-context-media-show-item-'+position).fadeIn('slow'); 59 63 } 60 64 }); … … 84 88 }); 85 89 </script> 90 <?php endif ?>