Skip to content

Commit

Permalink
fix(AgmCircle): dragstart event misspelled
Browse files Browse the repository at this point in the history
Minor change to casing on drag start event

Fixes #1537
  • Loading branch information
IsaacSomething authored and doom777 committed May 30, 2019
1 parent 16c083d commit 8b2f2dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/directives/circle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ export class AgmCircle implements OnInit, OnChanges, OnDestroy {
events.set('dblclick', this.circleDblClick);
events.set('drag', this.drag);
events.set('dragend', this.dragEnd);
events.set('dragStart', this.dragStart);
events.set('dragstart', this.dragStart);
events.set('mousedown', this.mouseDown);
events.set('mousemove', this.mouseMove);
events.set('mouseout', this.mouseOut);
Expand Down

0 comments on commit 8b2f2dc

Please sign in to comment.