raty icon indicating copy to clipboard operation
raty copied to clipboard

'star' parameter is undefined

Open viniciusjl opened this issue 11 years ago • 0 comments

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 = {};

viniciusjl avatar Jul 10 '14 20:07 viniciusjl