Current File : /home/n742ef5/royalanteam.com/wp-content/plugins/Ultimate_VC_Addons/assets/js/image-separator.js
// JavaScript Document
( function ( $ ) {
	$( document ).ready( function () {
		$( document ).trigger( 'ultImageSeparator' );
	} );
	$( window ).on( 'load', function () {
		$( document ).trigger( 'ultImageSeparator' );
	} );
	$( document ).on( 'ultImageSeparator', function ( event ) {
		$( '.ult-easy-separator-wrapper' ).each( function ( i, wr ) {
			const vc_row = $( this ).attr( 'data-vc-row' );
			let $row = $( this ).parents( '.' + vc_row + ':first' );
			if ( $row.hasClass( 'upb-background-text' ) ) {
				$row = $row.parents( '.' + vc_row + ':first' );
			}
			$( this )
				.appendTo( $row )
				.find( '.ult-no-animation' )
				.css( { opacity: '1' } );
		} );
	} );
} )( jQuery );