Hi,
I thought i'd post this here, my code modification so there is a class I can
style on the container as well as the background class.
modify these two lines (around line 233)
var content = this.content_ = document.createElement('DIV')
contentContainer.appendChild(content);
new code
var containerClass = 'map-tooltip-container';
var content = this.content_ = document.createElement('DIV')
contentContainer.appendChild(content);
contentContainer.setAttribute("class", containerClass);
Took me hours to figure out, hope this can be helpful to someone else.
Cheers
Original issue reported on code.google.com by nwrigh...@gmail.com on 20 Sep 2012 at 5:39
Original issue reported on code.google.com by
nwrigh...@gmail.com
on 20 Sep 2012 at 5:39