diff --git a/lib/jquery.raty.js b/lib/jquery.raty.js index 103a9350..4785e9ad 100644 --- a/lib/jquery.raty.js +++ b/lib/jquery.raty.js @@ -481,6 +481,10 @@ }, _roundStars: function(score, evt) { + if(Number.isInteger(score)){ + score += 0.0001; + } + var decimal = (score % 1).toFixed(2), name ;