Closed (fixed)
Project:
Advanced Forum
Version:
6.x-2.x-dev
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Mar 2011 at 15:42 UTC
Updated:
6 Apr 2011 at 17:21 UTC
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
Comment #1
Michsk commentedChange 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 ) {Comment #2
Michsk commentedJust as an extra, here's more about the issue: http://stackoverflow.com/questions/2608575/jquery-split-and-indexof-resu...
Comment #3
Michsk commentedAnd @ 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);Comment #4
troky commentedThanks for the info.
Proper patch should be:
Working in D7.
Comment #5
michelleCommitted / pushed. Thanks!
Michelle