The GLog window is appendChilded to document body when GLog is
triggered the first time. It can be found and the height of log
results <div> can be accessed with:

var logWindow = document.getElementsByTagName("body")[0].lastChild;
logWindow.lastChild.lastChild.style.height = '400px';

Those lines can be run only when the GLog is visible.
If you want make it narrower, you must kill the shadow <div> first:

logWindow.firstChild.style.display = 'none';
logWindow.lastChild.lastChild.style.width = '400px';


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" 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/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to