woocommerce/assets/js/admin/wc-setup.js

67 lines
2.2 KiB
JavaScript
Raw Normal View History

2015-07-10 04:32:30 +00:00
/*global wc_setup_params */
2016-04-01 10:19:55 +00:00
jQuery( function( $ ) {
var locale_info = $.parseJSON( wc_setup_params.locale_info );
2016-04-01 10:19:55 +00:00
$( 'select[name="store_location"]' ).change( function() {
var country_option = $(this).val();
var country = country_option.split( ':' )[0];
var country_locale_info = locale_info[ country ];
2015-04-17 13:56:34 +00:00
var hide_if_set = [ 'thousand_sep', 'decimal_sep', 'num_decimals', 'currency_pos' ];
if ( country_locale_info ) {
2015-04-17 13:56:34 +00:00
$.each( country_locale_info, function( index, value) {
$(':input[name="' + index + '"]').val( value ).change();
2015-07-10 04:32:30 +00:00
if ( -1 !== $.inArray( index, hide_if_set ) ) {
2015-04-17 13:56:34 +00:00
$(':input[name="' + index + '"]').closest('tr').hide();
}
} );
} else {
$(':input[name="currency_pos"]').closest('tr').show();
$(':input[name="thousand_sep"]').closest('tr').show();
$(':input[name="decimal_sep"]').closest('tr').show();
$(':input[name="num_decimals"]').closest('tr').show();
}
2016-04-01 10:19:55 +00:00
} ).change();
2016-04-01 10:19:55 +00:00
$( 'input[name="woocommerce_calc_taxes"]' ).change( function() {
2015-04-22 14:30:50 +00:00
if ( $(this).is( ':checked' ) ) {
2015-04-27 15:33:52 +00:00
$(':input[name="woocommerce_prices_include_tax"], :input[name="woocommerce_import_tax_rates"]').closest('tr').show();
2015-04-22 14:30:50 +00:00
$('tr.tax-rates').show();
} else {
2015-04-27 15:33:52 +00:00
$(':input[name="woocommerce_prices_include_tax"], :input[name="woocommerce_import_tax_rates"]').closest('tr').hide();
2015-04-22 14:30:50 +00:00
$('tr.tax-rates').hide();
}
2016-04-01 10:19:55 +00:00
} ).change();
2015-04-22 14:30:50 +00:00
2016-03-31 16:17:11 +00:00
$( '.button-next' ).on( 'click', function() {
$('.wc-setup-content').block({
message: null,
overlayCSS: {
background: '#fff',
opacity: 0.6
}
});
return true;
2016-04-01 10:19:55 +00:00
} );
$( '.wc-wizard-payment-gateways' ).on( 'change', '.wc-wizard-gateway-enable input', function() {
if ( $( this ).is( ':checked' ) ) {
$( this ).closest( 'li' ).addClass( 'checked' );
} else {
$( this ).closest( 'li' ).removeClass( 'checked' );
}
} );
$( '.wc-wizard-payment-gateways' ).on( 'click', 'li.wc-wizard-gateway', function() {
var $enabled = $( this ).find( '.wc-wizard-gateway-enable input' );
$enabled.prop( 'checked', ! $enabled.prop( 'checked' ) ).change();
} );
$( '.wc-wizard-payment-gateways' ).on( 'click', 'li.wc-wizard-gateway table, li.wc-wizard-gateway a', function( e ) {
e.stopPropagation();
} );
2016-04-01 10:19:55 +00:00
} );