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

Brown paper bag fix. I broke hyphenated mapids back in September and it took...

Brown paper bag fix. I broke hyphenated mapids back in September and it took me this long to notice.
parent 5ab76025
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ Drupal.gmap = new function() {
var mapid = obj.id.split('-');
var instanceid = mapid.pop();
mapid.shift();
mapid.join('-');
mapid = mapid.join('-');
var control = instanceid.replace(/\d+$/, '');
// Lazy init the map object.
......
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