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

@@ -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