(results)
| 310 | } |
| 311 | |
| 312 | function azure_check_result(results) { |
| 313 | if (results['result'] === true) { |
| 314 | var azureResult = document.getElementById("hostingLocation"); |
| 315 | let displayHTML = create_h3("Azure Information"); |
| 316 | displayHTML += "True - Region: " + results['record']['region'] + ", CIDR: " + results['record']['ip_prefix']; |
| 317 | azureResult.innerHTML += displayHTML + "<br/><br/>"; |
| 318 | } |
| 319 | } |
| 320 | |
| 321 | function azure_check(ip) { |
| 322 | var url = "/api/v1.0/azure/ip_check"; |
nothing calls this directly
no test coverage detected