Author |
|
warrenjb Newbie
Joined: 15 September 2011
Online Status: Offline Posts: 2
|
Posted: 15 September 2011 at 3:04pm | IP Logged
|
|
|
does anyone have a fix for IE9 when replying to or forwarding messages ? it looks like the html editor control at the top of the message body field is failing to load so I cannot see the message i am forwarding or replying to, and cannot enter any text in the email body field.
this is only happening on IE9. IE8, firefox, chrome all ok.
thanks in advance
warren
|
Back to Top |
|
|
warrenjb Newbie
Joined: 15 September 2011
Online Status: Offline Posts: 2
|
Posted: 15 September 2011 at 3:13pm | IP Logged
|
|
|
the fix was actually already here, thanks for the below post. IE9 working great now! next time i will that few more times before posting :)
Actually, there is another fix for that, it's really simple this time. Locate the following code in
js/common/common-helpers.js (line ~25) for 5.* version, or class.common.js (line ~39) for 4.* version:
Code:
this.IE = (this.Name == 'Microsoft Internet Explorer');
Modify it as follows:
Code:
this.IE = (this.Name == 'Microsoft Internet Explorer' && this.Version < 9);
this.IE9 = (this.Name == 'Microsoft Internet Explorer' && this.Version >= 9);
|
Back to Top |
|
|