| Current Path : /home/ereika83/www/wp-content/plugins/bb-plugin/modules/post-grid/includes/ |
| Current File : /home/ereika83/www/wp-content/plugins/bb-plugin/modules/post-grid/includes/frontend.js.php |
(function($) {
$(function() {
new FLBuilderPostGrid({
id: '<?php echo $id; ?>',
layout: '<?php echo esc_js( $settings->layout ); ?>',
pagination: '<?php echo esc_js( $settings->pagination ); ?>',
postSpacing: '<?php echo empty( $settings->post_spacing ) ? 60 : intval( $settings->post_spacing ); ?>',
postWidth: '<?php echo empty( $settings->post_width ) ? 300 : intval( $settings->post_width ); ?>',
matchHeight: {
default : '<?php echo esc_js( $settings->match_height ); ?>',
large : '<?php echo esc_js( $settings->match_height_large ); ?>',
medium : '<?php echo esc_js( $settings->match_height_medium ); ?>',
responsive : '<?php echo esc_js( $settings->match_height_responsive ); ?>'
},
isRTL: <?php echo is_rtl() ? 'true' : 'false'; ?>,
loadingText: '<?php echo isset( $settings->more_btn_loading ) && '' !== $settings->more_btn_loading ? esc_attr( $settings->more_btn_loading ) : esc_attr( __( 'Loading...', 'fl-builder' ) ); ?>'
});
<?php if ( 'grid' == $settings->layout ) : ?>
$('.fl-node-<?php echo $id; ?> .fl-post-<?php echo sanitize_html_class( $settings->layout ); ?>').masonry('reloadItems');
<?php endif; ?>
});
})(jQuery);