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
On IE7 / IE8, closing an opened window has a strange effect : Other opened window's toolbars and body becomes transparent.
Seems coming from canvas.
[Edit]
Found that the Chrome memory release in window._doClosingJobs() isn't compatible with IE :
MUI.each(function(instance){
if (!instance.isTypeOf('MUI.Window')) return;
// helps release memory in chrome
// This was done even the Browser isn't Chrome.
// if (instance.el.canvas){
// Added the Chrome check.
if (Browser.chrome == true && instance.el.canvas){
instance.el.canvas.height = 0;
instance.el.canvas.width = 0;
}
...
});
The text was updated successfully, but these errors were encountered:
On IE7 / IE8, closing an opened window has a strange effect : Other opened window's toolbars and body becomes transparent.
Seems coming from canvas.
[Edit]
Found that the Chrome memory release in window._doClosingJobs() isn't compatible with IE :
The text was updated successfully, but these errors were encountered: