extinfowindow.js, line ~100:
for (var i in this.wrapperParts ) {
[...]
var tempWrapperPart = eval('this.wrapperParts.' + i);
The eval here is quite ugly. Replace with:
var tempWrapperPart = this.wrapperParts[i];
Original issue reported on code.google.com by MBen...@gmail.com on 11 Mar 2009 at 8:23
Original issue reported on code.google.com by
MBen...@gmail.com
on 11 Mar 2009 at 8:23