diff options
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index 58224f89..a98b6254 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -567,8 +567,7 @@ isInsertMode = -> # Some sites (e.g. inbox.google.com) change the contentEditable attribute on the fly (see #1245); and # unfortunately, isEditable() is called *before* the change is made. Therefore, we need to re-check whether # the active element is contentEditable. - document.activeElement and - document.activeElement.isContentEditable and + document.activeElement and document.activeElement.isContentEditable and !findMode and enterInsertModeWithoutShowingIndicator document.activeElement # should be called whenever rawQuery is modified. |
