Skip to content

Commit

Permalink
Fix Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tjamesallen15 committed Jan 24, 2024
1 parent e545dea commit a0362d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/monthview/monthview.js
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ MonthView.prototype = {
this.calendarToolbarEl = this.header.find('.calendar-toolbar');
this.calendarToolbarAPI = new CalendarToolbar(this.calendarToolbarEl[0], calendarToolbarSettings);

this.element.find(`td:not('.alternate')`).attr('tabindex', '-1');
this.element.find(`td:not('.alternate')`).attr('tabindex', '-1'); //eslint-disable-line
this.handleEvents();

this.selectDay(this.currentDate);
Expand Down Expand Up @@ -2307,7 +2307,7 @@ MonthView.prototype = {

const node = dayObj[0].elem[0];

this.element.find('td[tabindex=0]').attr('tabindex', '-1')
this.element.find('td[tabindex=0]').attr('tabindex', '-1');
$(node).attr('tabindex', '0').focus();
},

Expand Down

0 comments on commit a0362d0

Please sign in to comment.