customd / jquery-number

Easily format numbers for display use. Replace numbers inline in a document, or return a formatted number for other uses.
https://www.customd.com/articles/14/jquery-number-format-redux
MIT License
442 stars 403 forks source link

Negative number not round #142

Open JONDJ opened 5 years ago

JONDJ commented 5 years ago

When the number value is negative faile the round image

JONDJ commented 5 years ago

My solution:

//return $.number(valor,2); if(valor < 0){ return -1$.number((-1valor),2); }else{ return $.number(valor,2); }