| 1 |
jQuery(function(){ |
| 2 |
jQuery(document).on('updated_checkout', function(){ |
| 3 |
jQuery(".parcel_machine_checkout").css('display', 'none'); |
| 4 |
jQuery('.shipping_method:checked, .shipping_method[type=hidden]').each(function(){ |
| 5 |
var method = jQuery(this).val(), display; |
| 6 |
if (method.indexOf(':') > -1) { |
| 7 |
var tmp = method.split(':'); |
| 8 |
method = tmp[0]; |
| 9 |
} |
| 10 |
jQuery(".parcel_machine_checkout_"+method).not(':first').remove(); |
| 11 |
jQuery(".parcel_machine_checkout_"+method).css('display', 'table-row'); |
| 12 |
}); |
| 13 |
jQuery('.select-postmachine select').select2({ |
| 14 |
formatResult: function(item) { |
| 15 |
var texts = item.text.split(' - ', 2); |
| 16 |
return '<strong>'+texts[0]+'</strong>' + (texts[1] ? '<br/><small>'+texts[1]+'</small>' : ''); |
| 17 |
} |
| 18 |
}); |
| 19 |
}); |
| 20 |
}); |
| 21 |
|