[-] FO : fixed bug #PSCFV-2382 - Your shopping cart is empty not appear and the right column go to the left side

This commit is contained in:
aFolletete
2012-05-21 17:16:36 +00:00
parent 13edc7b5d0
commit ef6a73ee09
+16 -11
View File
@@ -291,16 +291,21 @@ function deleteProductFromSummary(id)
location.reload();
if (parseInt(jsonData.summary.products.length) == 0)
{
$('#center_column').children().each(function() {
if ($(this).attr('id') != 'emptyCartWarning' && $(this).attr('class') != 'breadcrumb' && $(this).attr('id') != 'cart_title')
{
$(this).fadeOut('slow', function () {
$(this).remove();
});
}
});
$('#summary_products_label').remove();
$('#emptyCartWarning').fadeIn('slow');
if (typeof(orderProcess) == 'undefined' || orderProcess != 'order-opc')
document.location.href = document.location.href; // redirection
else
{
$('#center_column').children().each(function() {
if ($(this).attr('id') != 'emptyCartWarning' && $(this).attr('class') != 'breadcrumb' && $(this).attr('id') != 'cart_title')
{
$(this).fadeOut('slow', function () {
$(this).remove();
});
}
});
$('#summary_products_label').remove();
$('#emptyCartWarning').fadeIn('slow');
}
}
else
{
@@ -784,4 +789,4 @@ function updateExtraCarrier(id_delivery_option, id_address)
$('#HOOK_EXTRACARRIER_'+id_address).html(jsonData['content']);
}
});
}
}