(d)
| 1029 | this.display.value((` ${(d.getMinutes()%10)}`).slice(0,4)); |
| 1030 | } |
| 1031 | drawOnOff(d) { 1 == d ? this.display.value(" on") : this.display.value(" off"); } |
| 1032 | draw2412(d) { 1 == d ? this.display.value(" 12") : this.display.value("24 "); } |
| 1033 | drawYesNo(d) { 1 == d ? this.display.value(" yes") : this.display.value(" no"); } |
| 1034 |