fix(filters): use k not K for thousand

This commit is contained in:
deilann 2014-05-12 23:05:43 -07:00
parent 0d15006123
commit a56b1eec12

View file

@ -16,6 +16,6 @@ angular.module('habitrpg')
})
.filter('goldRoundThousandsToK', function(){
return function (gp) {
return (gp > 999) ? (Math.floor(gp / 100) / 10.0 + 'K') : gp;
return (gp > 999) ? (Math.floor(gp / 100) / 10.0 + 'k') : gp;
}
})
})