Skip to content

Commit

Permalink
fix(*): lint errors #3126
Browse files Browse the repository at this point in the history
  • Loading branch information
SAndreeva committed Feb 20, 2019
1 parent 30c5c61 commit 2c905e1
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,6 @@ export class IgxCalendarComponent extends IgxMonthPickerBase {
});
}


/**
* @hidden
*/
Expand Down Expand Up @@ -479,6 +478,8 @@ export class IgxCalendarComponent extends IgxMonthPickerBase {
public onKeydownPageDown(event: KeyboardEvent) {
event.preventDefault();

this.nextMonth(true);

const activeDate = this.daysView.dates.find((date) => date.nativeElement === document.activeElement);
if (activeDate) {
this.daysView.nextDate = new Date(activeDate.date.date);
Expand All @@ -503,7 +504,7 @@ export class IgxCalendarComponent extends IgxMonthPickerBase {
};
}

this.nextMonth(true);
// this.nextMonth(true);
}

/**
Expand Down

0 comments on commit 2c905e1

Please sign in to comment.