(elem: Element)
| 1611 | } |
| 1612 | |
| 1613 | function isInView(elem: Element) { |
| 1614 | if (self.daysContainer !== undefined) |
| 1615 | return ( |
| 1616 | elem.className.indexOf("hidden") === -1 && |
| 1617 | elem.className.indexOf("flatpickr-disabled") === -1 && |
| 1618 | self.daysContainer.contains(elem) |
| 1619 | ); |
| 1620 | return false; |
| 1621 | } |
| 1622 | |
| 1623 | function onBlur(e: FocusEvent) { |
| 1624 | const isInput = e.target === self._input; |
no outgoing calls
no test coverage detected
searching dependent graphs…