Files
PrestaShop/install-new/theme/js/install.js
T
2011-11-10 17:32:47 +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');
});
});