JavaScript bug
-
Hi,
I found one (in some cases critical) issue: you forgot to add “;” in the following code part:var map_options = { zoom: <?php echo esc_attr( $atts['zoom'] ) ?>, center: location, mapTypeId: google.maps.MapTypeId.ROADMAP }
It leads to IE and js-minification errors!
Should be:
var map_options = { zoom: <?php echo esc_attr( $atts['zoom'] ) ?>, center: location, mapTypeId: google.maps.MapTypeId.ROADMAP };
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘JavaScript bug’ is closed to new replies.