Your IP : 216.73.216.138


Current Path : /home/ereika83/public_html/wp-content/plugins/bb-plugin/modules/video/includes/
Upload File :
Current File : /home/ereika83/public_html/wp-content/plugins/bb-plugin/modules/video/includes/frontend.js.php

(function($){
	<?php if ( isset( $settings->video_lightbox ) && 'yes' == $settings->video_lightbox ) : ?>
		$('.fl-node-<?php echo $id; ?> .fl-video-poster').magnificPopup({
			type: 'iframe',
			mainClass: 'fl-video-lightbox-wrap',
			closeBtnInside: true,
			fixedContentPos: true,
			tLoading: '<i class="fas fa-spinner fa-spin fa-3x fa-fw"></i>',
		});

		<?php if ( isset( $settings->poster_src ) ) : ?>
			$( '.fl-node-<?php echo $id; ?> .fl-video-poster' ).on( 'keydown', function ( e ) {
				if ( e.key === 'Enter' || e.key === ' ' ) {
					e.preventDefault();
					$( this ).trigger( 'click' );
				}
			});
			<?php
		endif;
	endif;

	if ( ! FLBuilderModel::is_builder_active() && isset( $settings->sticky_on_scroll ) && 'yes' === $settings->sticky_on_scroll ) :
		?>

		new FLBuilderVideo({
			id: '<?php echo $id; ?>',
		});
	<?php endif; ?>
})(jQuery);