(e)
| 20 | extendChroma(chroma); |
| 21 | |
| 22 | function bulkConvert(e) { |
| 23 | let button = document.getElementById('bulkConvert'); |
| 24 | button.addEventListener('click', bulkItemConvertColorInput); |
| 25 | |
| 26 | let dialog = document.getElementById('bulkConvertDialog'); |
| 27 | dialog.classList.add('is-open'); |
| 28 | |
| 29 | document.getElementById('dialogOverlay').style.display = 'block'; |
| 30 | } |
| 31 | |
| 32 | function cancelBulkConvert() { |
| 33 | let dialog = document.getElementById('bulkConvertDialog'); |
nothing calls this directly
no outgoing calls
no test coverage detected