What steps will reproduce the problem?
1. (Using FF, not verified in other browsers) use the Tabbed Max Content
extension with the ExtMapTypeControl extension with traffic enabled.
2. Enlarge/maximize an info bubble and noticed how the traffic button
remains visible and on top of the maximized bubble. All other controls on
page correctly hide when something is maximized.
The traffic button's visibility style rule is interfering with it's parent
container's visibility rule.
How to fix:
1. remove this line:
trafficDiv.style.visibility = 'hidden';
2. Modify the next declared listener to use display instead of visibility:
GEvent.addListener(me.trafficInfo, "changed", function(hasTrafficInView) {
if (hasTrafficInView) {
trafficDiv.style.display = 'block';
} else {
trafficDiv.style.display = 'none';
}
});
Original issue reported on code.google.com by mynameis...@gmail.com on 20 May 2009 at 8:00
Original issue reported on code.google.com by
mynameis...@gmail.com
on 20 May 2009 at 8:00