more filter tweaks

This commit is contained in:
Marian Oancea 2015-02-05 06:59:24 +02:00
parent 297240b591
commit c85ca7f1a3
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ angular.module('netStatsApp.filters', [])
})
.filter('miningClass', function() {
return function(mining) {
return (! mining ? 'text-danger' : '');
return (! mining ? 'text-danger' : 'text-success');
};
})
.filter('miningIconClass', function() {
@ -47,7 +47,7 @@ angular.module('netStatsApp.filters', [])
})
.filter('blockClass', function() {
return function(current, best) {
return (best - current <= 1 ? '' : (best - current > 1 && best - current < 4 ? 'text-warning' : 'text-danger'));
return (best - current <= 1 ? 'text-success' : (best - current > 1 && best - current < 4 ? 'text-warning' : 'text-danger'));
};
})
.filter('timeClass', function() {