diff options
author | Renato Botelho <garga@FreeBSD.org> | 2013-07-25 15:07:02 -0300 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2013-07-25 15:07:02 -0300 |
commit | b045bbb3f7e54f1ef798db34b70ca876c456bd13 (patch) | |
tree | 227b74c1b47e4ed58e2fffcad76d0e22b95dc1c1 /config/openbgpd | |
parent | 8ca29f03d5b68ad6064989ad25ce138b2b54b202 (diff) | |
download | pfsense-packages-b045bbb3f7e54f1ef798db34b70ca876c456bd13.tar.gz pfsense-packages-b045bbb3f7e54f1ef798db34b70ca876c456bd13.tar.bz2 pfsense-packages-b045bbb3f7e54f1ef798db34b70ca876c456bd13.zip |
Increase timeout to ajax calls
Diffstat (limited to 'config/openbgpd')
-rw-r--r-- | config/openbgpd/openbgpd_status.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/openbgpd/openbgpd_status.php b/config/openbgpd/openbgpd_status.php index 522d3d41..fa5f2f38 100644 --- a/config/openbgpd/openbgpd_status.php +++ b/config/openbgpd/openbgpd_status.php @@ -204,9 +204,9 @@ function execCmds() { } if (jQuery) - jQuery(document).ready(exec_all_cmds()); + jQuery(document).ready(function(){setTimeout('exec_all_cmds()', 5000);}); else - document.observe('dom:loaded', exec_all_cmds()); + document.observe('dom:loaded', function(){setTimeout('exec_all_cmds()', 5000);}); //]]> </script> |