| Current Path : /home/ereika83/www/wp-content/plugins/bb-plugin/modules/video/includes/ |
| Current File : /home/ereika83/www/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);