Skip to content

Commit

Permalink
Fixing style bug in map element layout for forms, was missing ; between
Browse files Browse the repository at this point in the history
width and height for main map div.  Ooooops.
  • Loading branch information
cheesegrits committed May 29, 2015
1 parent e64d26c commit d316ec2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -46,7 +46,7 @@
?>


<div class="map" style="<?php echo $d->width;?>height:<?php echo $d->height;?>px"></div>
<div class="map" style="<?php echo $d->width;?>; height:<?php echo $d->height;?>px"></div>
<input type="hidden" class="fabrikinput" name="<?php echo $d->name;?>"
value="<?php echo htmlspecialchars($d->value, ENT_QUOTES); ?>" />

Expand Down

0 comments on commit d316ec2

Please sign in to comment.