HEX
Server: Apache
System: Linux server 5.4.0-56-generic #62-Ubuntu SMP Mon Nov 23 19:20:19 UTC 2020 x86_64
User: losadagest (10000)
PHP: 7.4.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/aceitunaslosada.com/web/wp-content/themes/betheme/muffin-options/js/options.js
(function($) {
  /* globals jQuery */

  "use strict";

  function mfnOptions() {

    var current = 'general';

    // syntax highlighter

    var editor = ['css','javascript'];
    var editorEl, editorInstance;

    $.each( editor, function( index, value ){

      editorEl = $( '.custom-'+ value +' textarea' );

      if ( typeof mfn_cm === 'undefined' ) {
        return true;
      }

      if( ! editorEl.length ){
        return true;
      }

      if( wp.codeEditor === undefined ){
        return true;
      }

      editorEl.attr( 'id', 'custom-'+ value );

      wp.codeEditor.defaultSettings.codemirror.mode = 'text/'+ value;

      editorInstance = wp.codeEditor.initialize( 'custom-'+ value, mfn_cm[value] );
      editorInstance.codemirror.setOption( 'lint', true );
      editorInstance.codemirror.refresh();
    });

  	// show last open tab

    if ($('#last_tab').val()) {
      current = $('#last_tab').val();
    }

		// show active tab and menu

    $('#' + current + '-mfn-section').show();
    $('#' + current + '-mfn-submenu-li').addClass('active').parent('ul').show().parent('li').addClass('active');

    // parent menu | click
		// show childrens and select 1st

    $('#mfn-wrapper').on('click', '.mfn-menu-a', function() {

      if (!$(this).parent().hasClass('active')) {

        $('.mfn-menu-li').removeClass('active');
        $('.mfn-submenu').slideUp('fast');

        $(this).next('ul').stop().slideDown('fast');
        $(this).parent('li').addClass('active');

        $('.mfn-submenu-li').removeClass('active');
        $('.mfn-section').hide();

        current = $(this).next('ul').children('li:first').addClass('active').children('a').attr('data-rel');
        $('#' + current + '-mfn-section').stop().fadeIn(1200);
        $('#last_tab').val(current);
      }

    });

    // submenu click

    $('#mfn-wrapper').on('click', '.mfn-submenu-a', function() {

      if (!$(this).parent().hasClass('active')) {

        $('.mfn-submenu-li').removeClass('active');
        $(this).parent('li').addClass('active');

        $('.mfn-section').hide();

        current = $(this).attr('data-rel');
        $('#' + current + '-mfn-section').stop().fadeIn(1200);
        $('#last_tab').val(current);
      }

    });

    // submenu | add last

    $('.mfn-submenu .mfn-submenu-li:last-child').addClass('last');

    // reset

    $('#mfn-wrapper').on('click', '.reset-pre-confirm', function() {
      $(this).closest('.step-1').hide().next().fadeIn(200);
    });

    $('#mfn-wrapper').on('click', '.mfn-popup-reset', function() {

      if ($('.reset-security-code').val() != 'r3s3t') {
        alert('Please insert correct security code: r3s3t');
        return false;
      }

      if (confirm("Are you sure?\n\nClicking this button will reset all custom values across your entire Theme Options panel")) {
        $(this).val('Resetting...');
        return true;
      } else {
        return false;
      }
    });

    // import code button

		$('#mfn-wrapper').on('click', '.mfn-import-imp-code-btn', function() {
      $('.mfn-import-imp-link-wrapper').hide();
      $('.mfn-import-imp-code-wrapper').stop().fadeIn(500);
    });

    // import link button

		$('#mfn-wrapper').on('click', '.mfn-import-imp-link-btn', function() {
      $('.mfn-import-imp-code-wrapper').hide();
      $('.mfn-import-imp-link-wrapper').stop().fadeIn(500);
    });

    // export code button

		$('#mfn-wrapper').on('click', '.mfn-import-exp-code-btn', function() {
      $('.mfn-import-exp-link').hide();
      $('.mfn-import-exp-code').stop().fadeIn(500);
    });

    // export link button

		$('#mfn-wrapper').on('click', '.mfn-import-exp-link-btn', function() {
      $('.mfn-import-exp-code').hide();
      $('.mfn-import-exp-link').stop().fadeIn(500);
    });

  }

	/**
	 * $(document).ready
	 * Specify a function to execute when the DOM is fully loaded.
	 */

  $(function($) {
    mfnOptions();
  });

})(jQuery);