diff options
| author | ilya | 2009-12-30 13:26:11 -0800 |
|---|---|---|
| committer | ilya | 2009-12-30 13:26:11 -0800 |
| commit | 29d1d535b056e38a8f7338fd5146d4ba4444db21 (patch) | |
| tree | 6100afe82caeeaff81bef7083acca3f6ea0b1476 /vimiumFrontend.js | |
| parent | d372d7b0f1896b9020ee9024dd7aca1c28b688ae (diff) | |
| download | vimium-29d1d535b056e38a8f7338fd5146d4ba4444db21.tar.bz2 | |
Missing return statement.
Diffstat (limited to 'vimiumFrontend.js')
| -rw-r--r-- | vimiumFrontend.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vimiumFrontend.js b/vimiumFrontend.js index fae37631..834b6d56 100644 --- a/vimiumFrontend.js +++ b/vimiumFrontend.js @@ -204,7 +204,10 @@ function onKeydown(event) { // Enter insert mode when the user enables the native find interface. if (keyChar == "f" && !event.shiftKey && ((platform == "Mac" && event.metaKey) || (platform != "Mac" && event.ctrlKey))) + { enterInsertMode(); + return; + } if (event.shiftKey) keyChar = keyChar.toUpperCase(); |
