()
| 389 | } |
| 390 | |
| 391 | function initializeResetLayoutLink() { |
| 392 | const currentUrl = document.URL; |
| 393 | if (currentUrl.includes('/z/')) { |
| 394 | $('#ui-brokenlink').attr('href', currentUrl.replace('/z/', '/resetlayout/')).show(); |
| 395 | initShortlinkInfoButton(); |
| 396 | } else { |
| 397 | $('#ui-brokenlink').hide(); |
| 398 | hideShortlinkInfoButton(); |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | function initPolicies(options: CompilerExplorerOptions) { |
| 403 | if (options.policies.privacy.enabled) { |
no test coverage detected