Open qzi35 opened 5 years ago
yeah, please support decimals, too.
results.push($stars.eq(i - 1).removeClass(rating >= i ? this.options.emptyClass : this.options.fullClass).addClass(rating >= i ? this.options.fullClass : this.options.emptyClass));
change to
results.push($stars.eq(i - 1).removeClass(Math.round(rating) >= i ? this.options.emptyClass : this.options.fullClass).addClass(Math.round(rating) >= i ? this.options.fullClass : this.options.emptyClass));
Math.round() does the job! :)
Cheers!
Hello, does the plugin supports decimals values, for example to set de star at middle?