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
Comment #1
mehrpadin commentedHey Kyle,
Thanks for this, added to my to-do list. :)
Comment #2
robloachThis will fix it: #1194244: Remove Inline JavaScript
Comment #3
mehrpadin commentedThanks a lot, Rob's patch added (with some modifications) as of v1.9-beta3.