aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/styles/script.js17
1 files changed, 9 insertions, 8 deletions
diff --git a/phpBB/styles/script.js b/phpBB/styles/script.js
index 3ed12bfee8..04e768e21e 100644
--- a/phpBB/styles/script.js
+++ b/phpBB/styles/script.js
@@ -33,15 +33,16 @@ phpbb.loading_alert = function() {
else
{
loading_alert.show();
- dark.fadeIn();
+ dark.fadeIn(function() {
+ setTimeout(function() {
+ if (loading_alert.is(':visible'))
+ {
+ phpbb.alert('Error', 'Error processing your request. Please try again.');
+ }
+ }, 5000);
+ });
}
-
- setTimeout(function() {
- if (loading_alert.is(':visible'))
- {
- phpbb.alert('Error', 'Error processing your request. Please try again.');
- }
- }, 3000);
+
return loading_alert;
}