onionr/onionr/static-data/www/board/autorefresh.js

19 lines
445 B
JavaScript
Raw Normal View History

2019-07-29 04:07:29 +00:00
var checkbox = document.getElementById('refreshCheckbox')
function autoRefresh(){
if (! checkbox.checked){return}
getBlocks()
}
function setupInterval(){
if (checkbox.checked){
refreshInterval = setInterval(autoRefresh, 10000)
autoRefresh()
return
}
clearInterval(refreshInterval)
}
var refreshInterval = setInterval(autoRefresh, 10000)
setupInterval()
checkbox.onchange = function(){setupInterval}