mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-12 01:50:52 +01:00
Fixed out-of-sync ARIA attributes in navigation
This commit is contained in:
parent
950d1e41fb
commit
b1ee79b262
@ -24,6 +24,7 @@ import {
|
||||
Observable,
|
||||
Subject,
|
||||
animationFrameScheduler,
|
||||
asyncScheduler,
|
||||
auditTime,
|
||||
combineLatest,
|
||||
defer,
|
||||
@ -36,6 +37,7 @@ import {
|
||||
ignoreElements,
|
||||
map,
|
||||
mergeMap,
|
||||
observeOn,
|
||||
takeUntil,
|
||||
tap,
|
||||
withLatestFrom
|
||||
@ -202,6 +204,7 @@ export function mountSidebar(
|
||||
.pipe(
|
||||
mergeMap(label => fromEvent(label, "click")
|
||||
.pipe(
|
||||
observeOn(asyncScheduler),
|
||||
map(() => label),
|
||||
takeUntil(done$)
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user