Skip to content

Commit

Permalink
fix(aot): fix typescript errors when doing aot
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Lewis committed Sep 24, 2016
1 parent 7e51f67 commit c5ac3f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
},
"dependencies": {
"@ng-bootstrap/ng-bootstrap": "^1.0.0-alpha.0",
"calendar-utils": "0.0.26",
"calendar-utils": "0.0.27",
"date-fns": "^1.3.0"
}
}
4 changes: 2 additions & 2 deletions src/directives/calendarTooltip.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,12 +180,12 @@ export class CalendarTooltip implements AfterViewChecked, OnDestroy {
}

@HostListener('mouseenter')
private onMouseOver(): void {
onMouseOver(): void {
this.show();
}

@HostListener('mouseleave')
private onMouseOut(): void {
onMouseOut(): void {
this.hide();
}

Expand Down

0 comments on commit c5ac3f9

Please sign in to comment.