2019-01-16 05:57:47 +00:00
|
|
|
shutdownBtn = document.getElementById('shutdownNode')
|
2019-01-20 22:54:04 +00:00
|
|
|
refreshStatsBtn = document.getElementById('refreshStats')
|
2019-01-16 05:57:47 +00:00
|
|
|
shutdownBtn.onclick = function(){
|
2019-01-17 05:31:56 +00:00
|
|
|
if (! nowebpass){
|
|
|
|
httpGet('shutdownclean')
|
|
|
|
overlay('shutdownNotice')
|
|
|
|
}
|
2019-01-16 05:57:47 +00:00
|
|
|
}
|
2019-01-20 22:54:04 +00:00
|
|
|
|
|
|
|
refreshStatsBtn.onclick = function(){
|
|
|
|
getStats()
|
|
|
|
}
|