jQuery( function($) {
'use strict';
var location = kco_admin_params.location;
var titles = $('h3.wc-settings-sub-title');
var tables = $('h3.wc-settings-sub-title + table.form-table');
var submit = $('.wrap.woocommerce p.submit');
titles.append(' ');
tables.css('marginLeft', '20px').hide();
if(location === 'EU') {
var title = $('#woocommerce_kco_credentials_eu');
$('#woocommerce_kco_credentials_us').find('a').addClass('collapsed');
title.find('a').html('');
title.next().show();
} else if( location === 'US') {
var title = $('#woocommerce_kco_credentials_us');
$('#woocommerce_kco_credentials_eu').find('a').addClass('collapsed');
title.find('a').html('');
title.next().show();
} else {
var title = titles;
}
$('#woocommerce_kco_color_settings_title').find('a').addClass('collapsed');
titles.find('a').click(function(e) {
e.preventDefault();
if ($(this).hasClass('collapsed')) {
$(this).parent().next().show();
$(this).removeClass('collapsed');
$(this).html('');
} else {
$(this).parent().next().hide();
$(this).addClass('collapsed');
$(this).html('');
}
});
titles.before('
');
submit.before('
');
});