You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I navigate to a new page, the layers of the new page remains at display:none in ie10. It seems that in ie, setting display to null doesn't refresh it. In the Layer class, I replaced :
rootElement.style.display=null;
by rootElement.style.display="block";
and it now works in ie. I'm not sure how to fix it properly as I don't think the current display style can be easily stored
The text was updated successfully, but these errors were encountered:
When I navigate to a new page, the layers of the new page remains at display:none in ie10. It seems that in ie, setting display to null doesn't refresh it. In the Layer class, I replaced :
rootElement.style.display=null;
by rootElement.style.display="block";
and it now works in ie. I'm not sure how to fix it properly as I don't think the current display style can be easily stored
The text was updated successfully, but these errors were encountered: