Skip to content
Snippets Groups Projects
Commit 3b808980 authored by Brandon Bergren's avatar Brandon Bergren
Browse files

Fix gmap alignment, which was still broken due to a missing space.

parent f0bfbbd6
No related branches found
No related tags found
No related merge requests found
...@@ -1131,7 +1131,7 @@ function theme_gmap($element) { ...@@ -1131,7 +1131,7 @@ function theme_gmap($element) {
$style[] = 'width: '. $map['width']; $style[] = 'width: '. $map['width'];
$style[] = 'height: '. $map['height']; $style[] = 'height: '. $map['height'];
$element['#attributes']['class'] = trim($element['#attributes']['class'] .'gmap gmap-map gmap-'. $mapid .'-gmap'); $element['#attributes']['class'] = trim($element['#attributes']['class'] .' gmap gmap-map gmap-'. $mapid .'-gmap');
// Some markup parsers (IE) don't handle empty inners well. Use the space to let users know javascript is required. // Some markup parsers (IE) don't handle empty inners well. Use the space to let users know javascript is required.
// @@@ Bevan sez: Google static maps could be useful here. // @@@ Bevan sez: Google static maps could be useful here.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment