| Server IP : 65.109.86.83 / Your IP : 37.27.51.148 Web Server : nginx/1.14.1 System : Linux libra 4.18.0-553.51.1.el8_10.x86_64 #1 SMP Wed Apr 30 20:24:04 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.31 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/plugins/thrive-leads/js/ |
Upload File : |
/**
* this file is loaded on Inner Frame
*/
window.TVE_Content_Builder = window.TVE_Content_Builder || {}
window.TVE = window.parent.TVE || {};
window.TVE_Content_Builder.ext = window.TVE_Content_Builder.ext || {};
window.TL_Editor = window.parent.TL_Editor || {};
window.TL_Editor_Page = {};
( function ( $ ) {
window.parent.TL_Editor_Page = window.TL_Editor_Page;
window.TL_Editor_Page.handle_state_response = function ( response ) {
let tveLeadsPageData = window.parent.tve_leads_page_data;
/** custom CSS */
$( '.tve_custom_style,.tve_user_custom_style,.tve_global_style' ).remove();
TVE.CSS_Rule_Cache.clear();
$( 'head' ).append( response.custom_css )
.append( response.global_css );
/** template-related CSS and fonts */
if ( ! response.css.thrive_events ) {
$( '#thrive_events-css,#tve_lightbox_post-css' ).remove();
}
jQuery.each( response.css, function ( _id, href ) {
if ( ! $( '#' + _id + '-css' ).length ) {
$( 'head' ).append( '<link href="' + href + '" type="text/css" rel="stylesheet" id="' + _id + '-css"/>' );
}
} );
/**
* custom body classes needed for lightboxes
*/
$( 'body' ).removeClass( 'tve-l-open tve-o-hidden tve-lightbox-page' ).addClass( response.body_class );
/**
* javascript params that need updating
*/
TVE.CONST = jQuery.extend( TVE.CONST, response.tve_path_params, true );
/**
* if the template has changed, remove the old css (the new one will be added automatically)
*/
if ( tveLeadsPageData.current_css !== response.tve_leads_page_data.current_css ) {
$( '#' + tveLeadsPageData.current_css + '-css' ).remove();
}
/**
* tve_leads javascript page data
*/
tveLeadsPageData = jQuery.extend( tveLeadsPageData, response.tve_leads_page_data, true );
window.TL_Editor.tcbEditorSetSelector();
/**
* Check if the current template needs a Thrive Themes wrapper
*/
/* if the current template has Thrive Themes wrappers */
const $replace = $( '#tve-leads-editor-replace' ),
hasTTWrapper = $replace.closest( '.cnt.bSe' ).length;
if ( response.needs_tt_wrapper && ! hasTTWrapper ) {
$replace.wrap( '<div class="cnt bSe"></div>' ).wrap( '<article>' );
} else if ( ! response.needs_tt_wrapper && hasTTWrapper ) {
$replace.unwrap().unwrap();
}
const $newContent = $( response.main_page_content );
$replace.empty().unwrap().replaceWith( $newContent );
TVE.Editor_Page.initEditorActions( true ); // make sure old rules are added to the end of the desktop media query
$newContent.find( '[data-css]:not(.thrv_symbol *)' ).each( function () {
$( this ).head_css_clone();
} );
};
/**
* pre-process the HTML node to be inserted
*
* @param {Object} $html jQuery wrapper over the HTML to be inserted
*/
window.TL_Editor.pre_process_content_template = function ( $html ) {
const tlClasses = [
'thrv-leads-slide-in',
'thrv-greedy-ribbon',
'thrv-leads-form-box',
'thrv-ribbon',
'thrv-leads-screen-filler',
'thrv-leads-widget'
];
$.each( tlClasses, function ( i, cls ) {
if ( $html.hasClass( cls ) ) {
$html = $html.children();
$html.find( '.tve-leads-close' ).remove();
return false;
}
} );
return $html;
};
} )( jQuery );