(e: FocusEvent)
| 467 | self.hourElement !== undefined |
| 468 | ) { |
| 469 | const selText = (e: FocusEvent) => |
| 470 | (getEventTarget(e) as HTMLInputElement).select(); |
| 471 | bind(self.timeContainer, ["increment"], updateTime); |
| 472 | bind(self.timeContainer, "blur", updateTime, { capture: true }); |
| 473 | bind(self.timeContainer, "click", timeIncrement); |
nothing calls this directly
no test coverage detected
searching dependent graphs…