Skip to content

Commit

Permalink
fix(AgmMap): mapDblClick output fixed
Browse files Browse the repository at this point in the history
The mouse event emitter was missing for mapDblClick

Fixes sebholstein#879
Closes sebholstein#880
  • Loading branch information
dangerdespain authored and franknwankwo committed Jun 7, 2017
1 parent cafb0e3 commit 978c2e2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/core/directives/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,7 @@ export class AgmMap implements OnChanges, OnInit, OnDestroy {
const events: Event[] = [
{name: 'click', emitter: this.mapClick},
{name: 'rightclick', emitter: this.mapRightClick},
{name: 'dblclick', emitter: this.mapDblClick},
];

events.forEach((e: Event) => {
Expand Down

0 comments on commit 978c2e2

Please sign in to comment.