From a56b1eec129114773e31ca4d57fb42bea8d36bfc Mon Sep 17 00:00:00 2001 From: deilann Date: Mon, 12 May 2014 23:05:43 -0700 Subject: [PATCH] fix(filters): use k not K for thousand --- public/js/filters/filters.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/js/filters/filters.js b/public/js/filters/filters.js index 292318da13..2bf7c2d6dd 100644 --- a/public/js/filters/filters.js +++ b/public/js/filters/filters.js @@ -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; } - }) \ No newline at end of file + })