aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjez2011-05-14 23:57:24 -0400
committerjez2011-05-14 23:57:24 -0400
commit47d2cf10ac6760abf35811c65b2b4d52774c3912 (patch)
treeac1b03d8fdc3b5c16ddf276bd7b5d2bea638930c
parent83e29416c6afeac5c2718bd8bdb64212c4ea8667 (diff)
downloadvimium-47d2cf10ac6760abf35811c65b2b4d52774c3912.tar.bz2
Keyup events were not being handled.
-rw-r--r--vimiumFrontend.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/vimiumFrontend.js b/vimiumFrontend.js
index eb0216f4..b6c252d4 100644
--- a/vimiumFrontend.js
+++ b/vimiumFrontend.js
@@ -167,6 +167,7 @@ function initializePreDomReady() {
function initializeWhenEnabled() {
document.addEventListener("keydown", onKeydown, true);
document.addEventListener("keypress", onKeypress, true);
+ document.addEventListener("keyup", onKeyup, true);
document.addEventListener("focus", onFocusCapturePhase, true);
document.addEventListener("blur", onBlurCapturePhase, true);
enterInsertModeIfElementIsFocused();