(results)
| 228 | } |
| 229 | |
| 230 | function display_cert_graph_link(results) { |
| 231 | if (!('message' in results) && document.getElementById('cert_graph_button') == null) { |
| 232 | document.getElementById("secDataRow").prepend(create_div_data("cert_graph", create_button("View Certificate Graph", "cert_graph_button", "icon", "S", "search"))); |
| 233 | document.getElementById("secTitleRow").prepend(create_div_title("cert_graph", "TLS Certificate Graph")); |
| 234 | |
| 235 | document.getElementById("cert_graph_button").addEventListener("click", function () { window.open('/cert_graph?zone=' + document.getElementById("search_input").value); }); |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | function display_whois_data(results) { |
| 240 | if ('message' in results) { |
no test coverage detected