- Posts: 5
- Thank you received: 0
Carousel does not show in IEXplorer 8
-
Rudolf
Inactive member - Topic Author
- New Member
Less
More
12 years 2 months ago #22047
by Rudolf
Carousel does not show in IEXplorer 8 was created by Rudolf
Hi,
In IExplorer 8, the carousel triggers two javascript errors in the javascript file of the template, which is JSN Epic Pro.
See below is a report of the errors:
Agent utilisateur : Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
Horodateur : Mon, 24 Sep 2012 17:13:05 UTC
Message : Object doesn't support this property or method
Ligne : 418
Caractère : 4
Code : 0
URI : test.footprintcommunication.com/sftl/tem..._pro/js/jsn_utils.js
Message : Object doesn't support this property or method
Ligne : 514
Caractère : 25
Code : 0
URI : test.footprintcommunication.com/sftl/med.../js/mootools-core.js
This problem prevents showing the article carousel which shows up in all other major browsers, except IExplorer 8.
I'm using JNS Epic Pro version 4.4.4 on Joomla 2.5.7
Page:
test.footprintcommunication.com/sftl/
Thanks beforehand for any suggestions how to solve this!
In IExplorer 8, the carousel triggers two javascript errors in the javascript file of the template, which is JSN Epic Pro.
See below is a report of the errors:
Agent utilisateur : Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
Horodateur : Mon, 24 Sep 2012 17:13:05 UTC
Message : Object doesn't support this property or method
Ligne : 418
Caractère : 4
Code : 0
URI : test.footprintcommunication.com/sftl/tem..._pro/js/jsn_utils.js
Message : Object doesn't support this property or method
Ligne : 514
Caractère : 25
Code : 0
URI : test.footprintcommunication.com/sftl/med.../js/mootools-core.js
This problem prevents showing the article carousel which shows up in all other major browsers, except IExplorer 8.
I'm using JNS Epic Pro version 4.4.4 on Joomla 2.5.7
Page:
test.footprintcommunication.com/sftl/
Thanks beforehand for any suggestions how to solve this!
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 2 months ago #22057
by ivan.milic
Replied by ivan.milic on topic Carousel does not show in IEXplorer 8
Open :
templates/jsn_epic_pro/js/jsn_utils.js
find this:
replace it with this:
templates/jsn_epic_pro/js/jsn_utils.js
find this:
Code:
setMobileSitetool: function()
{
var siteToolPanel = $("jsn-sitetoolspanel");
if (siteToolPanel)
{
siteToolPanel.getElements("li.jsn-sitetool-control").addEvent("click", function() {
this.toggleClass("active");
});
}
},
replace it with this:
Code:
setMobileSitetool: function()
{
try{
var siteToolPanel = $("jsn-sitetoolspanel");
if (siteToolPanel)
{
siteToolPanel.getElements("li.jsn-sitetool-control").addEvent("click", function() {
this.toggleClass("active");
});
}
}catch(e){
}
},
Please Log in to join the conversation.
Time to create page: 0.158 seconds