mirror of https://github.com/espruino/BangleApps
sched: superscript asterisk (for space)
parent
bbd93f530c
commit
1749b4c2f1
|
@ -138,7 +138,11 @@ function renderAlarm(alarm, exists) {
|
|||
};
|
||||
}
|
||||
}
|
||||
if (!exists) tdType.textContent = "* " + tdType.textContent;
|
||||
if (!exists) {
|
||||
const asterisk = document.createElement('sup');
|
||||
asterisk.textContent = '*';
|
||||
tdType.appendChild(asterisk);
|
||||
}
|
||||
inputTime.classList.add('event-date');
|
||||
inputTime.classList.add('form-input');
|
||||
inputTime.dataset.uid = alarm.id;
|
||||
|
|
Loading…
Reference in New Issue