Found a weird bug. When an exposed filter identifier is set to "length" the slider won't appear.

CommentFileSizeAuthor
#1 length_id_filter-2163135-1.patch975 bytessawabe
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

sawabe’s picture

Status: Active » Needs review
FileSize
975 bytes

Hi there,

I've discovered that you can catch this bug in old jQuery version (at least jQuery 1.4). It actually uses $.each (http://api.jquery.com/jquery.each) and it works just fine in modern versions. To get it work with old versions we need to replace $.each with pure for/in loop from Javascript.

mikeker’s picture

Status: Needs review » Closed (won't fix)

Unless someone can give me a specific browser and version (that Drupal supports) that $.each() doesn't work in, I'm not willing to fix.

Sorry.

mikeker’s picture

But thank you, @sawabe, for finding the root cause!