diff options
author | Alex Yatskov <FooSoft@users.noreply.github.com> | 2019-08-02 16:24:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-02 16:24:15 -0700 |
commit | 567b136f5f004ee887cf9a8bd950b2286fd5ddab (patch) | |
tree | d078ddea90064fee6fd76d2d3f6556b2434ff8da /ext | |
parent | 7cfcfb3bf34bb128dc4f5a47e7846fe4cc4c8c81 (diff) | |
parent | c08bcd7c56cd82dea67ba31a6e1cd40ee9fb4016 (diff) |
Merge pull request #171 from siikamiika/popup-focus
return focus to site after hiding popup
Diffstat (limited to 'ext')
-rw-r--r-- | ext/fg/js/popup.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index f5ccaf8b..c8cc9baa 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -106,6 +106,7 @@ class Popup { hide() { this.container.style.visibility = 'hidden'; + this.container.blur(); } isVisible() { |