// Changes to ajax product tabs loading
This commit is contained in:
@@ -247,6 +247,41 @@ function displayTabProductById(el, id, selected)
|
||||
});
|
||||
}
|
||||
|
||||
function displayTabProductById2(index, selected, stack)
|
||||
{
|
||||
id = stack[index];
|
||||
myurl = $('#link-'+id).attr("href")+"&ajax=1";
|
||||
// Used to check if the tab is already in the process of being loaded
|
||||
$("#product-tab-content-"+id).addClass('loading');
|
||||
|
||||
if (selected)
|
||||
$('#product-tab-content-wait').show();
|
||||
|
||||
$.ajax({
|
||||
url : myurl,
|
||||
async : true,
|
||||
success : function(data)
|
||||
{
|
||||
$("#product-tab-content-"+id).html(data);
|
||||
$("#product-tab-content-"+id).removeClass('not-loaded');
|
||||
|
||||
if (selected)
|
||||
{
|
||||
$("#link-"+id).addClass('selected');
|
||||
$("#product-tab-content-"+id).show();
|
||||
}
|
||||
},
|
||||
complete : function(data)
|
||||
{
|
||||
$("#product-tab-content-"+id).removeClass('loading');
|
||||
if (selected)
|
||||
$('#product-tab-content-wait').hide();
|
||||
if (stack[index + 1])
|
||||
displayTabProductById2(index + 1, selected, stack);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the manufacturer select element with the list of existing manufacturers
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user