This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let foundAppointment = false | |
| const parseCalendar = () => { | |
| const calendarCells = document.querySelector('app-calendar').querySelectorAll('td') | |
| calendarCells.forEach(cell => { | |
| const hasBlankSpan = cell.querySelector('span.blank') !== null | |
| const hasFullSpan = cell.querySelector('span.scheduleFull') !== null | |
| const availablilityLink = cell.querySelector('a.dayDetails.available') | |
| if (availablilityLink) { |