Merge pull request #935 from jeckyl/patch-4

Update cart-summary.js
This commit is contained in:
Rémi Gaillard
2013-11-06 07:01:02 -08:00

View File

@@ -792,7 +792,7 @@ function refreshDeliveryOptions()
$.each($('.delivery_option_radio'), function() {
if ($(this).prop('checked'))
{
if ($(this).parent().find('.delivery_option_carrier.not-displayable').length == 0)
if ($(this).parent().find('.delivery_option_carrier .not-displayable').length == 0)
$(this).parent().find('.delivery_option_carrier').show();
var carrier_id_list = $(this).val().split(',');
carrier_id_list.pop();
@@ -873,4 +873,4 @@ function updateExtraCarrier(id_delivery_option, id_address)
$('#HOOK_EXTRACARRIER_' + id_address).html(jsonData['content']);
}
});
}
}