(url, useWindowOpen)
| 254 | } |
| 255 | |
| 256 | function navigateTo(url, useWindowOpen) { |
| 257 | if (useWindowOpen) { |
| 258 | window.open(url, '_blank') |
| 259 | } else { |
| 260 | window.location.href = url |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | const ddElements = document.querySelectorAll('dd.script-show-applies-to ul.block-list.expandable > li') |
| 265 |