diff options
author | siikamiika <siikamiika@users.noreply.github.com> | 2019-08-01 00:25:31 +0300 |
---|---|---|
committer | siikamiika <siikamiika@users.noreply.github.com> | 2019-08-01 00:25:31 +0300 |
commit | c08bcd7c56cd82dea67ba31a6e1cd40ee9fb4016 (patch) | |
tree | d078ddea90064fee6fd76d2d3f6556b2434ff8da /ext/fg | |
parent | 7cfcfb3bf34bb128dc4f5a47e7846fe4cc4c8c81 (diff) |
return focus to site after hiding popup
Diffstat (limited to 'ext/fg')
-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() { |