moved port 2 rows down

This commit is contained in:
cubedro 2015-04-17 05:16:01 +03:00
parent ca4986033e
commit a37438df4d
1 changed files with 7 additions and 7 deletions

View File

@ -229,19 +229,13 @@ angular.module('netStatsApp.filters', [])
eth_version.splice(1,1);
}
string = "Ethereum: <b>" + node.info.node + "</b>";
string = "<b>" + node.info.node + "</b>";
tooltip.push(string);
string = "Version: <b>" + (eth_version[1]) + "</b>";
tooltip.push(string);
}
if(node.info.port !== '') {
string = "Port: <b>" + (typeof node.info.port !== 'undefined' ? node.info.port : '30303') + "</b>";
tooltip.push(string);
}
if(node.info.net !== '') {
string = "Network: <b>" + (typeof node.info.net !== 'undefined' ? node.info.net : '-') + "</b>";
@ -254,6 +248,12 @@ angular.module('netStatsApp.filters', [])
tooltip.push(string);
}
if(node.info.port !== '') {
string = "Port: <b>" + (typeof node.info.port !== 'undefined' ? node.info.port : '30303') + "</b>";
tooltip.push(string);
}
if(node.info.api !== '') {
string = "Web3: <b>" + node.info.api + "</b>";