Your IP : 216.73.216.95


Current Path : /var/www/mainsite/arfs/wp-content/themes/khore/js/admin/
Upload File :
Current File : /var/www/mainsite/arfs/wp-content/themes/khore/js/admin/themeoptions.js

jQuery(function () {
    jQuery('#ef_header_type').change(function () {
        jQuery('[id*=ef_subtitle_color]').closest('.el-option').nextAll('.el-option').hide();
        switch (jQuery(this).val()) {
            case 'slider':
                khore_options_find_option('ef_header_gallery').show();
                break;
            case 'video':
                khore_options_find_option('ef_header_video').show();
                khore_options_find_option('ef_header_video_background_image').show();
                break;
            case 'small':
                break;
                khore_options_find_option('ef_header_gallery').show();
            case 'solid':
                khore_options_find_option('ef_header_background_color').show();
                khore_options_find_option('ef_header_logo').show();
                break;
        }
    });
    
    jQuery('#ef_header_type').change();

});

function khore_options_find_option(id){
    return jQuery('[id*=' + id + ']').closest('.el-option');
}