Advertisement
Guest User

Untitled

a guest
Aug 31st, 2013
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery(document).ready(function($) {
  2.     //add popup functionality to all image links
  3.     $('a[href*=".jpg"], a[href*=".jpeg"], a[href*=".png"], a[href*=".gif"]').magnificPopup({type:'image'});
  4.     //initialize for wordpress galleries
  5.     $('.gallery').magnificPopup({
  6.         delegate: 'a',
  7.         type: 'image',
  8.         gallery: {
  9.             enabled: true
  10.         }
  11.     });
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement