James Moger
2011-12-07 7e8873a14ccc2cb25213489d7d7ba97f09673831
commit | author | age
f90dc6 1 $(document).ready(function() {
JM 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 });