Skip to content

Commit

Permalink
fix(OffCanvasMenu): fix implicit any on menu close event
Browse files Browse the repository at this point in the history
  • Loading branch information
StacyGay committed Jul 15, 2016
1 parent 5d58c37 commit a49b726
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/OffCanvasMenu/OffCanvasMenu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class OffCanvasMenuClose {
close = new EventEmitter();

@HostListener("click", ["$event"])
onClick(e): void {
onClick(e: any): void {
this.close.next(null);
}
}
Expand Down

0 comments on commit a49b726

Please sign in to comment.