(e, ch)
| 764 | return handled; |
| 765 | } |
| 766 | function handleCharBinding(e, ch) { |
| 767 | var handled = lookupKey("'" + ch + "'", options.extraKeys, |
| 768 | options.keyMap, function(b) { return doHandleBinding(b, true); }); |
| 769 | if (handled) { |
| 770 | e_preventDefault(e); |
| 771 | restartBlink(); |
| 772 | } |
| 773 | return handled; |
| 774 | } |
| 775 | |
| 776 | var lastStoppedKey = null, maybeTransition; |
| 777 | function onKeyDown(e) { |
no test coverage detected