I've no idea why this doesn't work (looks like it should), but the code which selects the label child of a .feeds-ui-checkbox-link:not(.processed) doesn't actually return any elements for me...

I had to change it from:

$(this).children('label').text()

to

$('label', this).text()

Patch attached...

CommentFileSizeAuthor
feeds.ui_.js_.patch834 bytesnicholasthompson

Comments

indytechcook’s picture

Status: Active » Reviewed & tested by the community

This works great.

indytechcook’s picture

FYI, you could also use .find() instead of .children()

$(this).find('label').text()

http://api.jquery.com/find/

alex_b’s picture

Version: 6.x-1.0-alpha11 » 6.x-1.x-dev
Status: Reviewed & tested by the community » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.