;(function($) { var options = { id: '', layout: '', captions: '', }; $(window).on('load', function() { new PPFilterableGallery(options); }); // expandable row fix. var state = 0; $(document).on('pp_expandable_row_toggle', function(e, selector) { if ( selector.is('.pp-er-open') && state === 0 ) { new PPFilterableGallery(options); state = 1; } }); // accordion fix var accordion_state = false; $(document).on('pp-accordion-toggle-complete', function(e, selector) { if ( ! accordion_state ) { new PPFilterableGallery(options); accordion_state = true; } }); // tabs fix var tabs_state = false; $(document).on('pp-tabs-switched', function(e, selector) { if ( selector.find('.pp-photo-gallery-content').length > 0 && ! tabs_state ) { new PPFilterableGallery(options); tabs_state = true; } }); })(jQuery);