File "frontend.js.php"
Full path: C:/Inetpub/vhosts/drshti.com/httpdocs/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/lottie/frontend.js.php
File
size: 356 B (356 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
/**
* Frontend JS File.
*
* @since 2.0.0
*
* @package uagb
*/
$base_selector = 'uagb-block-';
$selector = $base_selector . $id;
ob_start();
?>
window.addEventListener( 'DOMContentLoaded', function() {
UAGBLottie._run( <?php echo wp_json_encode( $attr ); ?>, '<?php echo esc_attr( $selector ); ?>' );
});
<?php
return ob_get_clean();
?>