Author |
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 03 March 2015 at 8:16am | IP Logged
|
|
|
In about a week, we're planning to release new version 7.5 of AfterLogic WebMail. It'll have quite a lot of fixes and improvements, and one of those is related to working with Internet Explorer 8. We still support this version, but several customers reported issues with it, to the extent when browser gets completely irresponsive.
If this issue is getting critical for you, no need to wait till the next release, you can fix that in your current version - assuming you're running version 7.4.*.
One of the files to be modified is static/js/app.js, but it isn't used by default - its minified version app.min.js is used. To change that, add the following item to the array defined in data/settings/config.php file:
Code:
'labs.use-app-min-js' => false, |
|
|
Once that's done, locate the following code in static/js/app.js file:
Code:
AppBase.prototype.init = function ()
{ |
|
|
And right before the closing brace of this function, add:
Code:
if (this.browser.ie8AndBelow)
{
$('body').css('overflow', 'hidden');
} |
|
|
The next modification is for templates/views/mail/LayoutSidePane/MessagePaneViewModel.html file, the following code (line ~274):
Code:
<div class="panel left_panel"> |
|
|
needs to be replaced with:
Code:
<div class="panel left_panel" style="width: auto;"> |
|
|
Also, in the same file, the following code (line ~230) needs to be removed:
Code:
<span class="icon attachments" data-bind="visible: hasNotInlineAttachments, click: function() { scrollToAttachment.valueHasMutated(); }"></span> |
|
|
One last modification is for templates/views/Common/HtmlEditorViewModel.html file, the code on line ~135:
Code:
<div class="workarea" data-bind="customScrollbar: {}, initDom: workareaDom"> |
|
|
should be modified as follows:
Code:
<div class="workarea" data-bind="customScrollbar: {x: true, y: true}, initDom: workareaDom"> |
|
|
To apply changes, you need to remove all the content under data/cache/ directory, browser cache should be updated as well.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|