(e)
| 725 | } |
| 726 | |
| 727 | getNextScrollableMonths(e) { |
| 728 | const { onGetNextScrollableMonths } = this.props; |
| 729 | if (e) e.preventDefault(); |
| 730 | |
| 731 | if (onGetNextScrollableMonths) onGetNextScrollableMonths(e); |
| 732 | |
| 733 | this.setState(({ scrollableMonthMultiple }) => ({ |
| 734 | scrollableMonthMultiple: scrollableMonthMultiple + 1, |
| 735 | })); |
| 736 | } |
| 737 | |
| 738 | getPrevScrollableMonths(e) { |
| 739 | const { numberOfMonths, onGetPrevScrollableMonths } = this.props; |
no test coverage detected