mirror of
https://github.com/woodchen-ink/czlexpress-for-woocommerce.git
synced 2025-07-18 22:11:58 +08:00
11 lines
393 B
JavaScript
11 lines
393 B
JavaScript
jQuery(function($) {
|
|
$('.shipping-method-group .toggle-sub-methods').on('click', function(e) {
|
|
e.preventDefault();
|
|
|
|
var $group = $(this).closest('.shipping-method-group');
|
|
var $subMethods = $group.find('.sub-methods');
|
|
|
|
$subMethods.slideToggle();
|
|
$(this).toggleClass('dashicons-arrow-down-alt2 dashicons-arrow-up-alt2');
|
|
});
|
|
});
|