Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
wp-content
/
plugins
/
beaver-builder-lite-version
/
modules
/
photo
/
includes
/
Editing: frontend.js.php
jQuery(function($) { <?php if ( 'lightbox' == $settings->link_type ) : ?> if (typeof $.fn.magnificPopup !== 'undefined') { $('.fl-node-<?php echo $id; ?> a').magnificPopup({ type: 'image', closeOnContentClick: true, closeBtnInside: false, tLoading: '', preloader: true, fixedContentPos: true, image: { titleSrc: function(item) { <?php if ( 'below' == $settings->show_caption || 'hover' == $settings->show_caption ) : ?> return FLBuilderLayout._string_to_slug( '<?php echo str_replace( array( "\r", "\n" ), array( '', ' ' ), trim( addslashes( $module->get_caption() ) ) ); ?>' ); <?php endif; ?> } }, callbacks: { open: function() { $('.mfp-preloader').html('<i class="fas fa-spinner fa-spin fa-3x fa-fw"></i>'); } } }); } <?php endif; ?> <?php if ( ! isset( $settings->title_hover ) || ( isset( $settings->title_hover ) && 'no' === $settings->title_hover ) ) : ?> $(function() { $( '.fl-node-<?php echo $id; ?> .fl-photo-img' ) .on( 'mouseenter', function( e ) { $( this ).data( 'title', $( this ).attr( 'title' ) ).removeAttr( 'title' ); } ) .on( 'mouseleave', function( e ){ $( this ).attr( 'title', $( this ).data( 'title' ) ).data( 'title', null ); } ); }); <?php endif; ?> window._fl_string_to_slug_regex = '<?php echo apply_filters( 'fl_photocaptionregex', 'a-zA-Z0-9' ); ?>'; });
Save
Cancel