Files
PrestaShop/install-dev/theme/js/install.js
2012-02-15 13:06:03 +00:00

18 lines
356 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');
});
$('select.chosen').chosen();
});