Your IP : 216.73.216.218


Current Path : /home/antonen/poznajlitwe.lt/plugins/system/sppagebuilder/assets/js/
Upload File :
Current File : //home/antonen/poznajlitwe.lt/plugins/system/sppagebuilder/assets/js/init.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');

		if (action === 'editor') {
			$('.sp-pagebuilder-admin').hide();
			$(spIntergationElement).show();
			$('#jform_attribs_sppagebuilder_active').val('0');

			if (typeof WFEditor !== 'undefined') {
	      $('.wf-editor-header').empty();
				$('.mceEditor').each(function(){
					var editorTempID = $(this).attr('id');
					var currentEditorID = editorTempID.substring( 0, editorTempID.length - 7 );
					var editorContentTemp = WFEditor.getContent(currentEditorID);
					$('#'+currentEditorID).val(editorContentTemp);
					$(this).remove();
				});

	      WFEditor.create();
				$('.mceEditor').show();
	    }

		} else {

			if (typeof WFEditor !== 'undefined') {
	      $('.wf-editor-header').empty();
				$('.mceEditor').each(function(){
					var editorTempID = $(this).attr('id');
					var currentEditorID = editorTempID.substring( 0, editorTempID.length - 7 );
					var editorContentTemp = WFEditor.getContent(currentEditorID);
					$('#'+currentEditorID).val(editorContentTemp);
					$(this).remove();
				});
	    }

			$(spIntergationElement).hide();
			$('.sp-pagebuilder-admin').show();
			$('#jform_attribs_sppagebuilder_active').val('1');
		}
	});
});