Depending on your Superfish configuration, you may render a js with a single animation option, such as this:

jQuery(function(){
jQuery('#superfish-1').supersubs({minWidth: 12, maxWidth: 27, extraWidth: 1}).superfish({
delay: 1000,
animation: {opacity:'show',},
speed: 'normal',
autoArrows: false,
dropShadows: false});
});

The trailing comma in the animation line throws an error in IE7 (not IE8 +)

However, adding another option (in my case, adding a "slide in effect: vertical") adds a second element to the animation list. That element does not have a trailing comma, and IE7 stops throwing an error.

Comments

mehrpadin’s picture

Hey Kyle,

Thanks for this, added to my to-do list. :)

robloach’s picture

mehrpadin’s picture

Status: Active » Fixed

Thanks a lot, Rob's patch added (with some modifications) as of v1.9-beta3.

Automatically closed -- issue fixed for 2 weeks with no activity.