/**
* Notice for Elementor
*
* @package Hestia
*/
/* global hestiaElementorNotice */
jQuery( document ).ready(
function () {
var style = '';
var dialog = style + '
' +
'
' +
'' +
'
Do you want to disable Elementors\' default styles and use the theme defaults?
' +
'
' +
'
' +
'
';
jQuery( 'body' ).prepend( dialog );
jQuery( '.hestia-elementor-notice-buttons > a' ).on(
'click', function() {
var reply = jQuery( this ).data( 'reply' );
jQuery.ajax(
{
url: hestiaElementorNotice.ajaxurl,
data: {
reply: reply,
nonce: hestiaElementorNotice.nonce,
action: 'hestia_elementor_deactivate_default_styles'
},
type: 'post',
success: function () {
if ( reply === 'yes' ) {
parent.location.reload();
} else {
jQuery( '.hestia-disable-elementor-styling' ).fadeOut( 500, function() { jQuery( this ).remove(); } );
}
}
}
);
}
);
}
);