fixed undefined vars
This commit is contained in:
parent
01da1e5e6a
commit
c6ac726455
@ -45,16 +45,9 @@ angular.module('netStatsApp.filters', [])
|
|||||||
.filter('nodeVersion', function($sce) {
|
.filter('nodeVersion', function($sce) {
|
||||||
return function(version) {
|
return function(version) {
|
||||||
if(typeof version !== 'undefined') {
|
if(typeof version !== 'undefined') {
|
||||||
version = version.replace('eth version ', 'v')
|
return $sce.trustAsHtml(version);
|
||||||
.replace("\n" + 'Network protocol version: ', ' (')
|
|
||||||
.replace("\n" + 'Client database version: ', ',')
|
|
||||||
.replace("\n" + 'Build: ', ') - ')
|
|
||||||
.replace('/Debug', '')
|
|
||||||
.replace('/.', '');
|
|
||||||
} else
|
} else
|
||||||
return '';
|
return '';
|
||||||
|
|
||||||
return $sce.trustAsHtml(version);
|
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
.filter('blockClass', function() {
|
.filter('blockClass', function() {
|
||||||
@ -219,7 +212,7 @@ angular.module('netStatsApp.filters', [])
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(node.info.contact !== '') {
|
if(node.info.contact !== '') {
|
||||||
string = "Contact: <b>" + node.info.contact + "</b>";
|
string = "Contact: <b>" + (typeof node.info.contact !== 'undefined' ? node.info.contact : '-') + "</b>";
|
||||||
|
|
||||||
tooltip.push(string);
|
tooltip.push(string);
|
||||||
}
|
}
|
||||||
@ -241,13 +234,13 @@ angular.module('netStatsApp.filters', [])
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(node.info.net !== '') {
|
if(node.info.net !== '') {
|
||||||
string = "Network: <b>" + node.info.net + "</b>";
|
string = "Network: <b>" + (typeof node.info.net !== 'undefined' ? node.info.net : '-') + "</b>";
|
||||||
|
|
||||||
tooltip.push(string);
|
tooltip.push(string);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(node.info.protocol !== '') {
|
if(node.info.protocol !== '') {
|
||||||
string = "Protocol: <b>" + node.info.protocol + "</b>";
|
string = "Protocol: <b>" + (typeof node.info.protocol !== 'undefined' ? node.info.protocol : '-') + "</b>";
|
||||||
|
|
||||||
tooltip.push(string);
|
tooltip.push(string);
|
||||||
}
|
}
|
||||||
@ -259,7 +252,7 @@ angular.module('netStatsApp.filters', [])
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(node.info.client !== '') {
|
if(node.info.client !== '') {
|
||||||
string = "API: <b>" + node.info.client + "</b>";
|
string = "API: <b>" + (typeof node.info.client !== 'undefined' ? node.info.client : '> 0.0.3') + "</b>";
|
||||||
|
|
||||||
tooltip.push(string);
|
tooltip.push(string);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user