Theres a bug in your js that breaks IE. Trying to figure out where and what it could be. If anyone else finds it, please let me know.

Comments

Michsk’s picture

Status: Active » Needs review

Change in advanced_forum.js @rule 75
if (Drupal.advanced_forum.collapsed_current.indexOf(id) != -1) {
TO
if ($.inArray(id, Drupal.advanced_forum.collapsed_current) > -1 ) {

Michsk’s picture

Michsk’s picture

And @ rule 46, change
Drupal.advanced_forum.collapsed_current.splice(Drupal.advanced_forum.collapsed_current.indexOf(id),1);
TO
Drupal.advanced_forum.collapsed_current.splice($.inArray(id, Drupal.advanced_forum.collapsed_current),1);

troky’s picture

Status: Needs review » Reviewed & tested by the community

Thanks for the info.

Proper patch should be:

@46
-Drupal.advanced_forum.collapsed_current.splice(Drupal.advanced_forum.collapsed_current.indexOf(id),1);
+Drupal.advanced_forum.collapsed_current.splice($.inArray(id, Drupal.advanced_forum.collapsed_current),1);

@75
-if (Drupal.advanced_forum.collapsed_current.indexOf(id) != -1) {
+if ($.inArray(id, Drupal.advanced_forum.collapsed_current) > -1) {

Working in D7.

michelle’s picture

Status: Reviewed & tested by the community » Fixed

Committed / pushed. Thanks!

Michelle

Status: Fixed » Closed (fixed)

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