1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-20 07:42:09 +02:00

[ticket/13984] Fix the call of Ajax loading indicator

PHPBB3-13984
This commit is contained in:
rxu 2015-07-04 12:40:01 +07:00
parent 60b4d5132f
commit 73ba70e98c

View File

@ -394,8 +394,11 @@ phpbb.ajaxify = function(options) {
error: errorHandler,
cache: false
});
request.always(function() {
$loadingIndicator.fadeOut(phpbb.alertTime);
if ($loadingIndicator && $loadingIndicator.is(':visible')) {
$loadingIndicator.fadeOut(phpbb.alertTime);
}
});
};