()
| 16 | window.addEventListener("load", custom_check); |
| 17 | |
| 18 | function custom_check() { |
| 19 | if (CustomScriptSourcesEnabled) { |
| 20 | var scr = document.createElement('script'); |
| 21 | scr.type = 'text/javascript'; |
| 22 | scr.addEventListener('load', build_page); |
| 23 | scr.src = CustomScriptSrc; |
| 24 | document.head.appendChild(scr); |
| 25 | } else { |
| 26 | build_page(); |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | function build_page() { |
| 31 | document.getElementById("censysSection").style.display = "none"; |
nothing calls this directly
no test coverage detected