// install-new renamed to install-dev
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
$(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');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user