diff --git a/src/main/resources/index.html b/src/main/resources/index.html
index 6372763..653d518 100644
--- a/src/main/resources/index.html
+++ b/src/main/resources/index.html
@@ -27,6 +27,12 @@
top:0;
z-index:100;
}
+ .info-row span{
+ float:right;
+ }
+ .info-row span::before{
+ content:'\00A0';
+ }
.info hr{
border-color: #27E4EB;
}
@@ -51,11 +57,23 @@
-
-
-
+
+ Blockchain Nodes:
+ ?
+
+
+ DHT Nodes:
+ ?
+
+
+ Hub Nodes:
+ ?
+
-
+
+ Total Nodes:
+ ?
+

@@ -163,10 +181,10 @@ function updatePointsData(points){
hubCount++;
}
}
- document.getElementById('info-nodes-blockchain').innerHTML = '
Blockchain Nodes: '+blockchainCount;
- document.getElementById('info-nodes-dht').innerHTML = '
DHT Nodes: '+dhtCount;
- document.getElementById('info-nodes-hub').innerHTML = '
Hub Nodes: '+hubCount;
- document.getElementById('info-nodes-total').innerHTML = '
Total Nodes: '+newPointsData.length;
+ document.getElementById('count-nodes-blockchain').textContent = blockchainCount;
+ document.getElementById('count-nodes-dht').textContent = dhtCount;
+ document.getElementById('count-nodes-hub').textContent = hubCount;
+ document.getElementById('count-nodes-total').textContent = newPointsData.length;
globe.pointsData(shuffleArray(newPointsData));
}