(results)
| 219 | } |
| 220 | |
| 221 | function display_graph_link(results) { |
| 222 | if (!('message' in results)) { |
| 223 | document.getElementById("htTitleRow").prepend(create_div_title("net_graph", "Network Graph")); |
| 224 | document.getElementById("htDataRow").prepend(create_div_data("net_graph", create_button("View Graph", "net_graph_button", "icon", "S", "search"))); |
| 225 | |
| 226 | document.getElementById("net_graph_button").addEventListener("click", function () { window.open('/graph?zone=' + document.getElementById("search_input").value); }); |
| 227 | } |
| 228 | } |
| 229 | |
| 230 | function display_cert_graph_link(results) { |
| 231 | if (!('message' in results) && document.getElementById('cert_graph_button') == null) { |
no test coverage detected