(e)
| 431 | } |
| 432 | |
| 433 | function handleKey(e) { |
| 434 | if (e.keyCode != 13) return; |
| 435 | setHrefParams(window.location, function (params) { |
| 436 | params.set('f', search.value); |
| 437 | }); |
| 438 | e.preventDefault(); |
| 439 | } |
| 440 | |
| 441 | function handleSearch() { |
| 442 | // Delay expensive processing so a flurry of key strokes is handled once. |
nothing calls this directly
no test coverage detected
searching dependent graphs…