raty
raty copied to clipboard
'star' parameter is undefined
Using demo page (demo/index.html), the following errors occur in lib/jquery.raty.js:
line 508: Uncaught TypeError: Cannot set property 'className' of undefined line 529: Uncaught TypeError: Cannot set property 'title' of undefined
These errors happen because the 'star' parameter has an undefined value.
As a temporary solution, I've added the following line just before the lines were the errors occured:
if (! star) star = {};