|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.

Added a new percent sorter and used that for percentages:
percent : function(a,b) { a = a.replace(/[^0-9.<>]/g,''); b = b.replace(/[^0-9.<>]/g,''); if (a == "<100") a = "99.9"; else if (a == ">0") a = "0.1"; if (b == "<100") b = "99.9"; else if (b == ">0") b = "0.1"; return parseFloat(a) - parseFloat(b); },
Use 99.9 for "<100%" and 0.1 for ">0%".