1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-24 15:40:15 +01:00

Simplified content tabs implementation

This commit is contained in:
squidfunk 2021-12-05 16:33:44 +01:00
parent bac1301710
commit f14d73931f
5 changed files with 10 additions and 13 deletions

View File

@ -213,7 +213,7 @@
</script>
{% endblock %}
{% block scripts %}
<script src="{{ 'assets/javascripts/bundle.195ba817.min.js' | url }}"></script>
<script src="{{ 'assets/javascripts/bundle.01d7f443.min.js' | url }}"></script>
{% for path in config["extra_javascript"] %}
<script src="{{ path | url }}"></script>
{% endfor %}

View File

@ -68,15 +68,12 @@ export function watchContentTabs(
return merge(...getElements(":scope > input", el)
.map(input => fromEvent(input, "change")
.pipe(
mapTo(input.id)
mapTo<ContentTabs>({
active: getElement(`label[for=${input.id}]`)
})
)
)
)
.pipe(
map(id => ({
active: getElement<HTMLLabelElement>(`label[for=${id}]`)
}))
)
}
/**

View File

@ -85,7 +85,7 @@ interface MountOptions {
* @returns Header title observable
*/
export function watchHeaderTitle(
el: HTMLHeadingElement, { viewport$, header$ }: WatchOptions
el: HTMLElement, { viewport$, header$ }: WatchOptions
): Observable<HeaderTitle> {
return watchViewportAt(el, { viewport$, header$ })
.pipe(
@ -123,7 +123,7 @@ export function mountHeaderTitle(
})
/* Obtain headline, if any */
const heading = getOptionalElement<HTMLHeadingElement>("article h1")
const heading = getOptionalElement("article h1")
if (typeof heading === "undefined")
return EMPTY