Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Firefox 3.6 (Read 4156 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Firefox 3.6

Hi all,

is anyone else having problems using Firefox 3.6 with the site? Around the time I upgraded, I'm no longer able to use the edit boxes here as well as before. For example, the cursor is no longer displayed in an edit box, so I'm not able to navigate around.


Firefox 3.6

Reply #2
Yes, I have the same issue, although funnily enough it doesn't appear consistent, it works sometimes.

Apparently it is a bug that was fixed in a later version of InvisionPowerBoard, is updating HA's IPB to a newer version an option?
Every night with my star friends / We eat caviar and drink champagne
Sniffing in the VIP area / We talk about Frank Sinatra
Do you know Frank Sinatra? / He's dead

Firefox 3.6

Reply #3
Apparently it is a bug that was fixed in a later version of InvisionPowerBoard, is updating HA's IPB to a newer version an option?


Upgrading IPB to a new major release is not an option. I've seen no proof so far this is an IPB bug anyway. Every other browser besides Firefox 3.6 works.

Firefox 3.6

Reply #4
Works fine for me.

OK, breaks here too after enabling "rich text editor".
Microsoft Windows: We can't script here, this is bat country.

 

Firefox 3.6

Reply #5
This fix was brought to my attention by Yirkha, so I've applied it. He also provided a diff of the two files, indicating a work-around for Mozilla/Gecko:

Code: [Select]
--- old.js    Mon Feb 22 15:19:33 2010
+++ new.js    Mon Feb 22 15:19:46 2010
@@ -41,7 +41,7 @@
     _editor.style.width = '80%';
     _options.style.width = 'auto';
     _options.style.height = 'auto';
-    _options.style.display = 'block';
+    _options.style.display = (is_moz) ? 'table-cell': 'block';
     _options._panel_open = 1;
     document.getElementById(editor_id + '_spacer-bar').style.width = '4px';
   }
@@ -53,7 +53,7 @@
     }
     _options.style.width = 'auto';
     _options.style.height = 'auto';
-    _options.style.display = 'block';
+    _options.style.display = (is_moz) ? 'table-cell': 'block';
     _options._panel_open = 1;
     document.getElementById(editor_id + '_spacer-bar').style.width = '4px';
     var _main_div = document.createElement('div');