()
| 2 | |
| 3 | // Game picker |
| 4 | function openGamePicker() { |
| 5 | const isStatic = document.body.hasAttribute("data-static-mode"); |
| 6 | const url = isStatic ? "/picker.html" : "/picker"; |
| 7 | window.location.href = url; |
| 8 | } |
| 9 | |
| 10 | function openGamePickerInNewTab() { |
| 11 | const isStatic = document.body.hasAttribute("data-static-mode"); |
no outgoing calls
no test coverage detected