decreased block hash string length

This commit is contained in:
cubedro
2015-04-06 16:13:49 +03:00
parent f835ecf348
commit 68e7f66f3d
3 changed files with 3 additions and 3 deletions

View File

@@ -222,7 +222,7 @@ table td {
}
.th-blockhash {
width: 460px;
width: 140px;
}
.th-blocktime {

View File

@@ -66,7 +66,7 @@ angular.module('netStatsApp.filters', [])
})
.filter('hashFilter', function() {
return function(hash) {
return hash.substr(0, 6) + '...' + hash.substr(58, 6);
return hash.substr(0, 8) + '...' + hash.substr(56, 8);
}
})
.filter('timeClass', function() {