(results, divRef)
| 158 | } |
| 159 | |
| 160 | function displayCountData(results, divRef) { |
| 161 | document.getElementById(divRef).innerHTML = ""; |
| 162 | document.getElementById(divRef).appendChild(create_button(results.count, divRef + 'Count', "variant")); |
| 163 | document.getElementById(divRef + "Count").addEventListener("click", get_details); |
| 164 | } |
| 165 | |
| 166 | function get_counts(url, divRef) { |
| 167 | make_get_request(url, displayCountData, divRef, "", { "count": 0 }); |
nothing calls this directly
no test coverage detected