(results)
| 373 | } |
| 374 | |
| 375 | function tracked_range_result(results) { |
| 376 | if (results['result'] === true) { |
| 377 | var hostingLocation = document.getElementById("hostingLocation"); |
| 378 | |
| 379 | let displayHTML = create_h3("Confirmed Tracked CIDR Range"); |
| 380 | |
| 381 | displayHTML += results['zone']; |
| 382 | if (results['notes'] && results['notes'].length > 0) { |
| 383 | displayHTML += " - " + results['notes'].toString(); |
| 384 | } |
| 385 | hostingLocation.innerHTML += displayHTML + "<br/><br/>"; |
| 386 | } |
| 387 | } |
| 388 | |
| 389 | function tracked_ip_range_check(type, ip) { |
| 390 | var url; |
nothing calls this directly
no test coverage detected