wbotelhos / raty

:star2: Raty - A Star Rating Plugin
https://wbotelhos.com
MIT License
2.35k stars 650 forks source link

Custom icon for half on #191

Open ramachandranv opened 8 years ago

ramachandranv commented 8 years ago

How can I set the custom icon for half on. I have 5 smileys for each range from 1-5. For each value a separate custom icon is used. Apart from star-half how do I set the half icon for each half value like 0.5, 1.5 etc.

wbotelhos commented 8 years ago

Try iconRange options. Check the demo page to know how it works.

ramachandranv commented 8 years ago

$.fn.raty.defaults.iconRange = [{ range: 1, on: 'images/1-on.png', off: 'images/1-off.png' }]

How do I specify the half icon for each range? I tried the below code but it doesn't work.

$.fn.raty.defaults.iconRange = [{ range: 1, on: 'images/1-on.png', off: 'images/1-off.png', half: 'images/1-half.png' }]

I need to set half icon for each range.