Reverted #41 fix i r906. IE cache issues, now fixed server side by r907

This commit is contained in:
Anders Betnér 2006-04-01 21:57:53 +00:00
parent f98a93bdb0
commit 5a731133e2

View File

@ -3,10 +3,10 @@ Event.observe(window,'load',initStatus);
var UPDATE_FREQUENCY = 5000; // number of ms between updates
function initStatus(e) {
new Ajax.Request('xml-rpc?method=stats&iefix='+Math.random(),{method: 'get',onComplete:rsStats});
new Ajax.Request('xml-rpc?method=stats',{method: 'get',onComplete:rsStats});
window.setInterval(function () {
new Ajax.Request('xml-rpc?method=stats&iefix='+Math.random(),{method: 'get',onComplete:rsStats});
new Ajax.Request('xml-rpc?method=stats',{method: 'get',onComplete:rsStats});
},UPDATE_FREQUENCY);
}