(idRef, data)
| 207 | } |
| 208 | |
| 209 | function create_div_data(idRef, data) { |
| 210 | let displayDiv = document.createElement('div'); |
| 211 | displayDiv.setAttribute("id", idRef + "_data"); |
| 212 | displayDiv.setAttribute("class", "tableCell tableBorder alignCenter"); |
| 213 | if (typeof data === "string") { |
| 214 | displayDiv.innerHTML = data; |
| 215 | } else { |
| 216 | displayDiv.appendChild(data); |
| 217 | } |
| 218 | return (displayDiv); |
| 219 | } |
| 220 | |
| 221 | function display_graph_link(results) { |
| 222 | if (!('message' in results)) { |
no outgoing calls
no test coverage detected