Switched annotation markers to + signs in non-print contexts

This commit is contained in:
squidfunk
2021-12-09 21:31:12 +01:00
parent 16939c16ae
commit 1ddf8723b0
14 changed files with 67 additions and 42 deletions

View File

@@ -22,6 +22,7 @@
import {
Observable,
debounceTime,
distinctUntilChanged,
fromEvent,
map,
@@ -43,6 +44,9 @@ import { getActiveElement } from "../_"
* within the elements itself. A better solutions are `focusin` and `focusout`
* events, which bubble up the tree and allow for more fine-grained control.
*
* `debounceTime` is necessary, because when a focus change happens inside an
* element, the observable would first emit `false` and then `true` again.
*
* @param el - Element
*
* @returns Element focus observable
@@ -55,6 +59,7 @@ export function watchElementFocus(
fromEvent(document.body, "focusout")
)
.pipe(
debounceTime(1),
map(() => {
const active = getActiveElement()
return typeof active !== "undefined"

View File

@@ -39,7 +39,9 @@ export function renderAnnotation(id: number): HTMLElement {
<div class="md-annotation__inner md-tooltip">
<div class="md-tooltip__inner md-typeset"></div>
</div>
<span class="md-annotation__index">{id}</span>
<span class="md-annotation__index">
<span data-md-annotation-id={id}></span>
</span>
</aside>
)
}