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

Fix nit in variable naming.

parent c485a67a
No related branches found
No related tags found
No related merge requests found
...@@ -16,11 +16,11 @@ Drupal.gmap.addHandler('gmap', function (elem) { ...@@ -16,11 +16,11 @@ Drupal.gmap.addHandler('gmap', function (elem) {
var obj = this; var obj = this;
obj.bind('init', function () { obj.bind('init', function () {
obj.clustermarker = 0; obj.clusterMarker = 0;
}); });
obj.bind('iconsready', function () { obj.bind('iconsready', function () {
if (!obj.clustermarker) { if (!obj.clusterMarker) {
var options = Drupal.settings.gmap_markermanager; var options = Drupal.settings.gmap_markermanager;
if (options.clusterMarkerIcon.length) { if (options.clusterMarkerIcon.length) {
options.clusterMarkerIcon = Drupal.gmap.getIcon(options.clusterMarkerIcon, 0); options.clusterMarkerIcon = Drupal.gmap.getIcon(options.clusterMarkerIcon, 0);
......
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