Skip to content

Commit ea169d1

Browse files
committed
chore(*): fix linting errors
1 parent 35f3787 commit ea169d1

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

projects/igniteui-angular/src/lib/calendar/days-view/days-view.component.ts

+4
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,10 @@ export class IgxDaysViewComponent extends IgxCalendarBaseDirective implements Do
157157
}
158158
}
159159

160+
/**
161+
* @hidden
162+
* @internal
163+
*/
160164
public tabIndex(day: ICalendarDate): number {
161165
return this.activeDate && this.activeDate === day.date.toLocaleDateString() && day.isCurrentMonth ? 0 : -1;
162166
}

src/app/calendar/calendar.sample.ts

-5
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,6 @@ export class CalendarSampleComponent implements OnInit, AfterViewInit {
2828
}
2929

3030
public ngAfterViewInit() {
31-
//this.calendar.selectDate(new Date(this.today.getFullYear(), this.today.getMonth(), 10));
32-
/* [ new Date(this.today.getFullYear(), this.today.getMonth(), 10),
33-
new Date(this.today.getFullYear(), this.today.getMonth(), 17),
34-
new Date(this.today.getFullYear(), this.today.getMonth(), 27)]) */
35-
console.log(this.calendar.selectedDates);
3631
}
3732

3833
public selectPTOdays(dates: Date[]) {

0 commit comments

Comments
 (0)