Server : Apache System : Linux webm012.cluster129.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : eventfrsgx ( 61451) PHP Version : 7.3.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Directory : /home/e/v/e/eventfrsgx/www/plugins/system/sppagebuilder/assets/js/ |
jQuery(document).ready(function($) {
if(spPagebuilderEnabled) {
$(spIntergationElement).hide();
$('.sp-pagebuilder-admin').show();
$('.btn-action-sppagebuilder').addClass('sp-pagebuilder-btn-success active');
} else {
$('.sp-pagebuilder-admin').hide();
$(spIntergationElement).show();
$('.btn-action-editor').addClass('sp-pagebuilder-btn-success active');
}
$('.sp-pagebuilder-btn-switcher').on('click',function(event){
event.preventDefault();
$('.sp-pagebuilder-btn-switcher').removeClass('active sp-pagebuilder-btn-success');
$(this).addClass('active').addClass('sp-pagebuilder-btn-success');
var action = $(this).data('action');
// get shared parent container
var $container = $(this).parent('.sp-pagebuilder-btn-group').parent();
if (action === 'editor') {
$('.sp-pagebuilder-admin').hide();
$(spIntergationElement).show();
$('#jform_attribs_sppagebuilder_active').val('0');
if (typeof WFEditor !== 'undefined') {
$('.wf-editor', $container).each(function() {
var value = this.nodeName === "TEXTAREA" ? this.value : this.innerHTML;
// pass content from textarea to editor
Joomla.editors.instances[this.id].setValue(value);
// show editor and tabs
$(this).parent('.wf-editor-container').show();
});
}
} else {
if (typeof WFEditor !== 'undefined') {
$('.wf-editor', $container).each(function() {
// pass content to textarea
Joomla.editors.instances[this.id].getValue();
// hide editor and tabs
$(this).parent('.wf-editor-container').hide();
});
}
$(spIntergationElement).hide();
$('.sp-pagebuilder-admin').show();
$('#jform_attribs_sppagebuilder_active').val('1');
}
});
});