gadgets.window.adjustHeight() fails on IE 6
-------------------------------------------

                 Key: SHINDIG-151
                 URL: https://issues.apache.org/jira/browse/SHINDIG-151
             Project: Shindig
          Issue Type: Bug
          Components: OpenSocial - Javascript
         Environment: IE 6, windows XP
            Reporter: Paul Lindner


>From our esteemed js guru Mike Austin:

The problem is in this code:
 
var oh = docEl.offsetHeight;
 
if (docEl.clientHeight != oh) {
    sh = body.scrollHeight;
    oh = body.offsetHeight;
}
 
Both offsetHeight and clientHeight are 0, so the code doesn't get executed for 
IE6.  You can change the test to "if(document.all)" for a fix, but someone at 
google should look deeper into this, especially if it worked before.
 
Mike
 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to