diff options
author | Duda Dornelles <ddornell@thoughtworks.com> | 2014-12-19 14:56:08 -0200 |
---|---|---|
committer | Duda Dornelles <ddornell@thoughtworks.com> | 2014-12-19 14:56:20 -0200 |
commit | 4cfb69848e0a65c6282bfdcbc76dd5008ed9adba (patch) | |
tree | 1f3be4681deb0b57ed785960d0d5143b23601088 /web-ui/app/js | |
parent | 628f4c44ee10c45819e4948910437d71c3368e25 (diff) |
#82 increasing ajax call timeout
Diffstat (limited to 'web-ui/app/js')
-rw-r--r-- | web-ui/app/js/helpers/monitored_ajax.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/app/js/helpers/monitored_ajax.js b/web-ui/app/js/helpers/monitored_ajax.js index e259756f..3f5ff2fe 100644 --- a/web-ui/app/js/helpers/monitored_ajax.js +++ b/web-ui/app/js/helpers/monitored_ajax.js @@ -25,7 +25,7 @@ define( function monitoredAjax(on, url, config) { if (config) { - config.timeout = 5*1000; + config.timeout = 60*1000; } return $.ajax(url, config).fail(function(xmlhttprequest, textstatus, message) { var msg = ''; |