If hoverOpaque is set, and u quickly pass over bar few times, then opaque
effect is repeating and bar looks like its flashing.
In line 84 and 87 add stop()after $(this)
$(this).fadeTo(defaults.hoverOpaqueEffect['enter']['speed'],
defaults.hoverOpaqueEffect['enter']['opacity']);
change to
$(this).stop().fadeTo(defaults.hoverOpaqueEffect['enter']['speed'],
defaults.hoverOpaqueEffect['enter']['opacity']);
more info on
http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup
Original issue reported on code.google.com by tehnopo...@gmail.com on 22 Mar 2010 at 11:40
Original issue reported on code.google.com by
tehnopo...@gmail.com
on 22 Mar 2010 at 11:40