Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IE7 / IE8 / IE9 : Closing a window : other windows toolbars become transp. #109

Open
partikule opened this issue Apr 27, 2011 · 0 comments
Milestone

Comments

@partikule
Copy link

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;
            }
            ...
        });

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant