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 #879
Closes #880
  • Loading branch information
dangerdespain authored and sebholstein committed Feb 9, 2017
1 parent edf6e4f commit 500dce0
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 500dce0

Please sign in to comment.