aboutsummaryrefslogtreecommitdiffstats
path: root/core/src/OC
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/OC')
-rw-r--r--core/src/OC/apps.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/OC/apps.js b/core/src/OC/apps.js
index bbda177409e..9f0ae217526 100644
--- a/core/src/OC/apps.js
+++ b/core/src/OC/apps.js
@@ -90,6 +90,7 @@ export const registerAppsSlideToggle = () => {
})
area.removeClass('opened')
$(button).removeClass('opened')
+ $(button).attr('aria-expanded', 'false')
}
/**
@@ -101,6 +102,7 @@ export const registerAppsSlideToggle = () => {
})
area.addClass('opened')
$(button).addClass('opened')
+ $(button).attr('aria-expanded', 'true')
const input = $(areaSelector + ' [autofocus]')
if (input.length === 1) {
input.focus()