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

Fix $ not defined error.

parent dcfe339e
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
* Common marker routines.
*/
/*global $, Drupal, GEvent, GInfoWindowTab, GLatLng, GLatLngBounds */
/*global jQuery, Drupal, GEvent, GInfoWindowTab, GLatLng, GLatLngBounds */
Drupal.gmap.addHandler('gmap', function (elem) {
var obj = this;
......@@ -78,7 +78,7 @@ Drupal.gmap.addHandler('gmap', function (elem) {
//if (!marker.text && Drupal.settings.loadingImage) {
// marker.marker.openInfoWindowHtml(Drupal.settings.loadingImage);
//}
$.get(uri, {}, function (data) {
jQuery.get(uri, {}, function (data) {
marker.marker.openInfoWindowHtml(data);
});
}
......
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