googlemaps-ts-rich-marker
Advanced tools
Comparing version 0.0.3 to 0.0.4
{ | ||
"name": "googlemaps-ts-rich-marker", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"lockfileVersion": 1, | ||
@@ -5,0 +5,0 @@ "requires": true, |
{ | ||
"name": "googlemaps-ts-rich-marker", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "A library for using arbitrary DOM elements as map markers in the Google Maps JavaScript API v3", | ||
@@ -26,2 +26,2 @@ "main": "dist/richmarker.js", | ||
} | ||
} | ||
} |
@@ -738,9 +738,9 @@ // ==ClosureCompiler== | ||
var that = this; | ||
this.google.maps.event.addDomListener(this.markerContent_, 'click', function (e) { | ||
this.google.maps.event.addDomListener(this.markerContent_, 'click', (e) => { | ||
this.google.maps.event.trigger(that, 'click', e); | ||
}); | ||
this.google.maps.event.addDomListener(this.markerContent_, 'mouseover', function (e) { | ||
this.google.maps.event.addDomListener(this.markerContent_, 'mouseover', (e) => { | ||
this.google.maps.event.trigger(that, 'mouseover', e); | ||
}); | ||
this.google.maps.event.addDomListener(this.markerContent_, 'mouseout', function (e) { | ||
this.google.maps.event.addDomListener(this.markerContent_, 'mouseout', (e) => { | ||
this.google.maps.event.trigger(that, 'mouseout', e); | ||
@@ -747,0 +747,0 @@ }); |
187836
17
1423