19 lines
482 B
JavaScript
19 lines
482 B
JavaScript
jQuery( function( $ ) {
|
|
|
|
console.log('easypack coupons');
|
|
|
|
if($('#discount_type').val() === 'easypack_inpost_discount') {
|
|
$('#easypack_list_configured_inpost_methods').show();
|
|
}
|
|
|
|
$('#discount_type').on('change', function () {
|
|
if($(this).val() === 'easypack_inpost_discount') {
|
|
$('#easypack_list_configured_inpost_methods').show();
|
|
|
|
} else {
|
|
$('#easypack_list_configured_inpost_methods').hide();
|
|
|
|
}
|
|
})
|
|
|
|
} ); |