See ChangeLog.

Monotone-Parent: 837142c1df31bc292adff9513b1f7c35f896ea83
Monotone-Revision: 71440e99d4aaef941747ff066471092846387f65

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2012-03-08T20:46:18
maint-2.0.2
Francis Lachapelle 2012-03-08 20:46:18 +00:00
parent 9ad607c387
commit 1ea14cf2d6
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2012-03-08 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/generic.js (getTopWindow): extend the
attributes of document.body before calling "hasClassName" to fix
an error with IE9.
2012-03-06 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Mailer/SOGoMailFolder.m

View File

@ -1494,7 +1494,7 @@ function getTopWindow() {
var topWindow = null;
var currentWindow = window;
while (!topWindow) {
if (currentWindow.document.body.hasClassName("popup")
if ($(currentWindow.document.body).hasClassName("popup")
&& currentWindow.opener
&& currentWindow.opener.getTopWindow)
currentWindow = currentWindow.opener;