Awesome! Seems to have fixed the problem. Great timing!
However, now I have another problem that started when I switched to
the updated code: I'm using the markerclusterer library as well and
now my infobox div on hover for that is no longer scrollable. I've got
two jquery live events that should be handling the situation but they
no longer get triggered.
$(".popup-container").live("mouseenter", function() {
console.log('mouseenter');
map.setOptions({scrollwheel: false});
});
$(".popup-container").live("mouseleave", function() {
map.setOptions({scrollwheel: true});
});
I never see the "mouseenter" text written to the console on mouseenter
of the div with class "popup-container".