Let's say I have 15 images in a gallery, and I want to add some thing like "Image 1 of 15". In the previous version, I could use something like:
'titlePosition': 'over'
'titleFormat': function(currentArray, currentIndex, currentOpts) { return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + '</span>'
Any help would be appreciated.