jquery.prettyPhoto.init.js 411 B

1234567891011121314151617181920212223
  1. (function($) {
  2. $(function() {
  3. // Lightbox
  4. $("a.zoom").prettyPhoto({
  5. hook: 'data-rel',
  6. social_tools: false,
  7. theme: 'pp_woocommerce',
  8. horizontal_padding: 20,
  9. opacity: 0.8,
  10. deeplinking: false
  11. });
  12. $("a[data-rel^='prettyPhoto']").prettyPhoto({
  13. hook: 'data-rel',
  14. social_tools: false,
  15. theme: 'pp_woocommerce',
  16. horizontal_padding: 20,
  17. opacity: 0.8,
  18. deeplinking: false
  19. });
  20. });
  21. })(jQuery);