// Deactivate ajax loading notification for product tabs loading

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12295 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
tDidierjean
2012-01-10 09:36:53 +00:00
parent d13ecd75af
commit 41d22576a2
2 changed files with 15 additions and 0 deletions
+10
View File
@@ -1058,6 +1058,16 @@ function stripHTML(oldString)
return newString;
}
/**
* Display a loading bar while an ajax call is ongoing.
*
* To prevent the loading bar display for a specific ajax call, set the beforeSend event in your ajax declaration:
* beforeSend : function(data)
{
// don't display the loading notification bar
clearTimeout(ajax_running_timeout);
}
*/
function showAjaxOverlay()
{
$('#ajax_running').slideDown('fast');