diff options
Diffstat (limited to 'content_scripts')
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index a98b6254..34fd56d5 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -567,7 +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 !findMode and + document.activeElement and document.activeElement.isContentEditable and enterInsertModeWithoutShowingIndicator document.activeElement # should be called whenever rawQuery is modified. |
