Revert "fixed totalDifficultyFilter, fixed gaslimit number format"

This reverts commit 5f786d8a2b.
This commit is contained in:
EOS Classic 2018-09-16 03:24:06 +09:00
parent 6384f8603b
commit 94c9fa6bc8
No known key found for this signature in database
GPG Key ID: 0D626A44301D8C5E
2 changed files with 6 additions and 5 deletions

View File

@ -75,7 +75,7 @@ angular.module('netStatsApp.filters', [])
return $sce.trustAsHtml('<span class="small">' + filter('number')(result.toFixed(1)) + ' <span class="small-hash">' + unit + 'H/s</span></span>');
};
}])
.filter('totalDifficultyFilter', ['$sce', '$filter', function($sce, filter) {
.filter('totalDifficultyFilter', function() {
return function(hashes) {
var result = hashes;
var units = ['', 'K', 'M', 'G', 'T', 'P'];
@ -87,9 +87,9 @@ angular.module('netStatsApp.filters', [])
unit = units[i];
}
return $sce.trustAsHtml(filter('number')(result.toFixed(2)) + ' <span class="small-hash">' + unit + 'H</span>');
return result.toFixed(2) + ' ' + unit + 'H';
};
}])
})
.filter('nodeVersion', function($sce) {
return function(version) {
if(version)

View File

@ -55,7 +55,8 @@ block content
i.icon-difficulty
div.big-details-holder
span.small-title difficulty
span.big-details(ng-bind-html="lastDifficulty | totalDifficultyFilter")
span.big-details
span.small-hash {{ lastDifficulty | totalDifficultyFilter }}
div.clearfix
div.clearfix
@ -78,7 +79,7 @@ block content
div.gasprice.text-info
i.icon-gasprice
span.small-title gas limit
span.small-value {{ bestStats.block.gasLimit | number }} gas
span.small-value {{ bestStats.block.gasLimit }} gas
div.col-xs-6.col-sm-6.col-md-6.col-lg-2.stat-holder.box
div.page-latency(class="{{ {active: true, latency: latency} | latencyClass }}")
i.icon-clock