To help fivestar work with jQuery 1.3.2 in jQuery Update can we please remove the @ in the selectors. It was depreciated as of 1.2 and removed in 1.3. Change highlighted below.
jQuery 1.2.x:
$("a[@href*='admin/build/testing']").doSomething();
jQuery 1.2.6 and 1.3.x:
$("a[href*='admin/build/testing']").doSomething();
More detail at http://docs.jquery.com/Selectors/attributeHas#attribute
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | fivestar_attribute_selector.patch | 1.35 KB | quicksketch |
Comments
Comment #1
quicksketchThanks, I don't know what those "@" symbols are still doing in Fivestar, I meant to remove them in the Drupal 6 upgrade. Fixed with the attached patch, committed.
Comment #3
dddave commentedDoes "commited" mean a new release of fivestar should be out? A couple of weeks lies behind us, is there a specific reason for the delay or am I misunderstanding something here?