There is a bug on line 97 which does not allow me to remove the close button
(version 1.1.13 [March 19, 2014]):
this.closeBoxURL_ = opt_opts.closeBoxURL ||
"http://www.google.com/intl/en_us/mapfiles/close.gif";
if (opt_opts.closeBoxURL === "") {
this.closeBoxURL_ = "";
}
If opt_opts.closeBoxURL is "falsy", it will default to the close.gif URL. This
means that the 'if statement' afterwards will never be true, as an empty string
IS falsy and it will be turned into the close.gif URL.
Either these lines need to be swapped or you need to check whether
opt_ops.closeBuxURL is a string.
Original issue reported on code.google.com by TheBe...@gmail.com on 26 Mar 2014 at 3:29
Original issue reported on code.google.com by
TheBe...@gmail.com
on 26 Mar 2014 at 3:29