woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.init.js

21 lines
381 B
JavaScript
Raw Normal View History

(function($) {
$(document).ready(function() {
// Lightbox
$("a.zoom").prettyPhoto({
social_tools: false,
2013-02-04 14:36:23 +00:00
theme: 'pp_woocommerce',
horizontal_padding: 20,
2013-09-16 14:24:42 +00:00
opacity: 0.8,
deeplinking: false
});
$("a[rel^='prettyPhoto']").prettyPhoto({
social_tools: false,
2013-01-31 14:15:50 +00:00
theme: 'pp_woocommerce',
horizontal_padding: 20,
2013-09-16 14:24:42 +00:00
opacity: 0.8,
deeplinking: false
});
});
})(jQuery);