Got a report from killes that his fieldsets weren't working at all, had him check the log and found: Fehler: TypeError: window.localStorage is null. This is causing the JS engine to crash.

Further discussion turned out that he is using FF 24 on Debian testing. I found the following link which is how we actually should be checking for support for localStorage (because apparently FF handles it differently): http://stackoverflow.com/questions/4706347/javascript-comparing-2-checks...

'localStorage' in window && typeof window.localStorage !== 'undefined' && window['localStorage'] !== null;

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

markhalliwell’s picture

Priority: Normal » Major
Status: Active » Needs review
FileSize
1002 bytes

Kinda a major bug since not supported in older FF versions or manually disabling it in FF will crash all the site's JS.

drumm’s picture

Status: Needs review » Fixed

Committed & deploying.

Status: Fixed » Closed (fixed)

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