* Syncs time input values with a date
(dateObj?: Date)
| 322 | * Syncs time input values with a date |
| 323 | */ |
| 324 | function setHoursFromDate(dateObj?: Date) { |
| 325 | const date = dateObj || self.latestSelectedDateObj; |
| 326 | |
| 327 | if (date && date instanceof Date) { |
| 328 | setHours(date.getHours(), date.getMinutes(), date.getSeconds()); |
| 329 | } |
| 330 | } |
| 331 | |
| 332 | /** |
| 333 | * Sets the hours, minutes, and optionally seconds |
no test coverage detected
searching dependent graphs…