(day)
| 183 | } |
| 184 | |
| 185 | dayChange (day) { |
| 186 | let d = this.changeDate({ |
| 187 | year: day.getFullYear(), |
| 188 | month: day.getMonth(), |
| 189 | day: day.getDate() |
| 190 | }); |
| 191 | this.stateChange({ value: d, current: d }, true); |
| 192 | if (this.props.type === DATE) { |
| 193 | this.close(); |
| 194 | } |
| 195 | } |
| 196 | |
| 197 | timeChange (time) { |
| 198 | let d = this.changeDate(time), |
nothing calls this directly
no test coverage detected