There's a slight problem with the way the Logging Pane sizes that makes
it so that the last logged message ends up below the visible range. It
looks like this:

http://i130.photobucket.com/albums/p243/Chamius/LoggingPaneBEFORE.jpg

The problem (as far as my knowledge of CSS, which could be wrong) is
with the style:

    logPaneArea.style.cssText = "overflow: auto; width: 100%";
    logPane.style.cssText = "width: 100%; height: "
        + (inline ? "8em" : "100%");

"100%" for inline elements is the still total size of the containing
block (not 100% of the remaining space), but the DIV needs to be
smaller than that because some space is taken up by the buttons on top.

Changing the code to:

    logPaneArea.style.cssText = "overflow-y: scroll; "
        + "position: absolute; width: 100%; top: 2em; bottom: 0px;";
    logPane.style.cssText = "width: 100%; height: "
        + (inline ? "8em" : "100%");

fixes the problem for me:

http://i130.photobucket.com/albums/p243/Chamius/LoggingPaneAFTER.jpg


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"MochiKit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/mochikit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to