You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

screenshots.js 415B

12345678910
  1. $(document).ready(function() {
  2. $("a[rel=screenshots_group]").fancybox({
  3. 'transitionIn' : 'none',
  4. 'transitionOut' : 'none',
  5. 'titlePosition' : 'over',
  6. 'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
  7. return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
  8. }
  9. });
  10. });