Hiding the element and then, shortly after, redisplaying it makes IE6 re-render

things correctly.
This commit is contained in:
John McKerrell 2007-05-28 14:52:06 +00:00
parent 461bf3802d
commit 124cd67ac8

View file

@ -166,6 +166,10 @@
el.style.height = new_height + 'px';
}
map.updateSize();
el.style.display = 'none';
setTimeout( function() {
el.style.display = '';
}, 200 );
}
if( ie6 ) {