Main ethoFS Code Reorganization - Phantom Modals Fix

This commit is contained in:
Dev-JamesR
2019-10-15 23:16:03 -07:00
parent 4a804b7023
commit ea81aaaeac
8 changed files with 1541 additions and 1525 deletions

View File

@@ -68,12 +68,12 @@ function start() {
window.info = id
console.log("Getting ethoFS Node ID...");
subscribeToHealthChannel()
updateView('ready', window.node)
onSuccess('Node is ready.')
setInterval(refreshPeerList, 10000)
EthoUploads.subscribeToHealthChannel()
EthoUploads.updateView('ready', window.node)
EthoUploads.onSuccess('Node is ready.')
setInterval(EthoUploads.refreshPeerList, 10000)
})
.catch((error) => onError(error))
.catch((error) => EthoUploads.onError(error))
})
}
}