about summary refs log tree commit diff
path: root/app/javascript/mastodon/actions
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-08-06 11:59:46 +0200
committerEugen Rochko <eugen@zeonfederated.com>2019-08-06 11:59:46 +0200
commita12f1a0baf3d31ecc9779c25b4bf4a0c9bd95543 (patch)
tree3d0940e33c51ef35790b085997e10d6c678f3462 /app/javascript/mastodon/actions
parent5c73746b695e5bc540b41f5ae1406eac6220886e (diff)
Improve dropdown menu keyboard navigation (#11491)
* Allow selecting menu items with the space bar in status dropdown menus

* Fix modals opened by keyboard navigation being immediately closed

* Fix menu items triggering modal actions

* Add Tab trapping inside dropdown menu

* Give focus back to last focused element when status dropdown menu closes
Diffstat (limited to 'app/javascript/mastodon/actions')
-rw-r--r--app/javascript/mastodon/actions/modal.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/javascript/mastodon/actions/modal.js b/app/javascript/mastodon/actions/modal.js
index 80e15c28e..3d0299db5 100644
--- a/app/javascript/mastodon/actions/modal.js
+++ b/app/javascript/mastodon/actions/modal.js
@@ -9,8 +9,9 @@ export function openModal(type, props) {
   };
 };
 
-export function closeModal() {
+export function closeModal(type) {
   return {
     type: MODAL_CLOSE,
+    modalType: type,
   };
 };