Refactored header title component

This commit is contained in:
squidfunk
2020-02-17 16:25:49 +01:00
parent 7876148fbd
commit dd40bc2fcf
23 changed files with 308 additions and 126 deletions

View File

@@ -36,8 +36,7 @@ export function watchLocation(): Subject<string> {
const location$ = new Subject<string>()
fromEvent<PopStateEvent>(window, "popstate")
.pipe(
map(() => location.href),
share()
map(() => location.href)
)
.subscribe(location$)