Hiding the element and then, shortly after, redisplaying it makes IE6 re-render
things correctly.
This commit is contained in:
parent
461bf3802d
commit
124cd67ac8
1 changed files with 4 additions and 0 deletions
|
@ -166,6 +166,10 @@
|
|||
el.style.height = new_height + 'px';
|
||||
}
|
||||
map.updateSize();
|
||||
el.style.display = 'none';
|
||||
setTimeout( function() {
|
||||
el.style.display = '';
|
||||
}, 200 );
|
||||
}
|
||||
|
||||
if( ie6 ) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue