Skip to content
Snippets Groups Projects
Commit 3d21dcf3 authored by echicken's avatar echicken
Browse files

Refresh every 30 seconds rather than every 10. Should result in decreased...

Refresh every 30 seconds rather than every 10.  Should result in decreased rectal pain for webservers and browsers alike.
parent e5a6b023
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@
/* An asynchronous "Who's Online" listing that updates at a sysop-defined
interval. Written for the ecWeb sidebar, but could be used elsewhere. */
var update = 10000; // Milliseconds between updates
var update = 30000; // Milliseconds between updates
load("nodedefs.js");
if(http_request.query.hasOwnProperty("action") && http_request.query.action.toString() == "show") {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment