(noteText: string)
| 60 | } |
| 61 | |
| 62 | export function trackingNoteElement(noteText: string) { |
| 63 | const noteDiv = document.createElement('div'); |
| 64 | noteDiv.style = 'margin-top: 5px; font-size: 0.9em; color: #ccc;'; |
| 65 | noteDiv.innerText = noteText; |
| 66 | |
| 67 | return noteDiv; |
| 68 | } |
| 69 | |
| 70 | export function trackingErrorElement() { |
| 71 | const errorDiv = document.createElement('div'); |