Whether the next period button is enabled.
()
| 147 | |
| 148 | /** Whether the next period button is enabled. */ |
| 149 | nextEnabled(): boolean { |
| 150 | return ( |
| 151 | !this.calendar.maxDate || !this._isSameView(this.calendar.activeDate, this.calendar.maxDate) |
| 152 | ); |
| 153 | } |
| 154 | |
| 155 | /** Updates the labels for the various sections of the header. */ |
| 156 | private _updateLabels() { |
no test coverage detected