(ev)
| 6518 | return false; |
| 6519 | } |
| 6520 | function interceptNavigation(ev) { |
| 6521 | // Trim potential accidental whitespace so that QUnit doesn't throw an error about no tests matching the filter. |
| 6522 | var filterInputElem = id('qunit-filter-input'); |
| 6523 | filterInputElem.value = trim(filterInputElem.value); |
| 6524 | applyUrlParams(); |
| 6525 | if (ev && ev.preventDefault) { |
| 6526 | ev.preventDefault(); |
| 6527 | } |
| 6528 | return false; |
| 6529 | } |
| 6530 | function getUrlConfigHtml() { |
| 6531 | var selection = false; |
| 6532 | var urlConfig = config.urlConfig; |
nothing calls this directly
no test coverage detected