diff options
| author | Stephen Blott | 2015-06-08 14:17:49 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-06-08 14:17:51 +0100 |
| commit | d8d36179677a99e1926f4ff6f0a8009fcdf8b97f (patch) | |
| tree | ee9e8a1066c7a4e82087f42a4be887d516d00c77 | |
| parent | d040912c37eba2e218094b2f21c43dcb863ff1ef (diff) | |
| download | vimium-d8d36179677a99e1926f4ff6f0a8009fcdf8b97f.tar.bz2 | |
Remove "experimental" comment.
I think we can safely remove this comment now, @mrmr1993. This is
working out very nicely.
| -rw-r--r-- | content_scripts/mode_insert.coffee | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/content_scripts/mode_insert.coffee b/content_scripts/mode_insert.coffee index 4e03cdd5..87525314 100644 --- a/content_scripts/mode_insert.coffee +++ b/content_scripts/mode_insert.coffee @@ -15,9 +15,6 @@ class InsertMode extends Mode target = event.srcElement if target and DomUtils.isFocusable target # Remove the focus, so the user can't just get back into insert mode by typing in the same input box. - # NOTE(smblott, 2014/12/22) Including embeds for .blur() etc. here is experimental. It appears to be - # the right thing to do for most common use cases. However, it could also cripple flash-based sites and - # games. See discussion in #1211 and #1194. target.blur() else if target?.shadowRoot and @insertModeLock # An editable element in a shadow DOM is focused; blur it. |
