()
| 1603 | } |
| 1604 | |
| 1605 | function doSelect() { |
| 1606 | var item = listState.items[listState.selectedIndex] |
| 1607 | if (!item || !listState._selectFn) return |
| 1608 | listState._selectFn(listState._action, item, function (items) { |
| 1609 | renderItems(items, listState._pluginPath) |
| 1610 | }) |
| 1611 | } |
| 1612 | |
| 1613 | function handleListKeydown(e) { |
| 1614 | if (!listState.active) return |
no test coverage detected