Dashing Meter缩短了NoN To Go Mo.

时间:2015-07-28 12:00:24

标签: dashing

问题用缩短的数字冲击仪表。

在dashing.coffee中,我把“To”

Batman.Filters.shortenedNumber = (num) ->
  return num if isNaN(num)

  if num >= 1000000000000
    (num / 1000000000000).toFixed(1) + 'To'
  else if num >= 1000000000
    (num / 1000000000).toFixed(1) + 'Go'
  else if num >= 1000000
    (num / 1000000).toFixed(1) + 'Mo'
  else if num >= 1000
    (num / 1000).toFixed(1) + 'Ko'
  else
    num

它的工作,但不适用于所有仪表。我有6米用同样的方法发送。我有2.5To值的仪表发送:2466384969728和1890993569792米不改变值(1890993569792 = 1.9不工作)你有解决方案

enter image description here

0 个答案:

没有答案