aboutsummaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/bg/js/settings/popup-menu.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bg/js/settings/popup-menu.js b/ext/bg/js/settings/popup-menu.js
index def59055..f49e50da 100644
--- a/ext/bg/js/settings/popup-menu.js
+++ b/ext/bg/js/settings/popup-menu.js
@@ -48,14 +48,14 @@ class PopupMenu {
}
close() {
- this._close(null);
+ this._close(null, 'close');
}
// Private
_onMenuContainerClick(e) {
if (e.currentTarget !== e.target) { return; }
- this._close(null, 'close');
+ this._close(null, 'outside');
}
_onMenuItemClick(e) {