Files
PrestaShop/install-dev/theme/js/install.js
2012-01-26 17:35:54 +00:00

16 lines
323 B
JavaScript

$(document).ready(function()
{
// Ajax animation
$("#loaderSpace").ajaxStart(function()
{
$(this).fadeIn('slow');
$(this).children('div').fadeIn('slow');
});
$("#loaderSpace").ajaxComplete(function(e, xhr, settings)
{
$(this).fadeOut('slow');
$(this).children('div').fadeOut('slow');
});
});