diff options
author | Chocobozzz <me@florianbigard.com> | 2020-06-16 09:56:24 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-06-16 11:26:46 +0200 |
commit | 64e0f8cf12c804a7a2fa582fd954f686cea9a45b (patch) | |
tree | e76dd7980665c1ac814ed4acd4fe9ce3a3e11974 /client/src/app/app.component.ts | |
parent | c7763eddd14ee6a4a448d5187f46f79b22047d20 (diff) | |
download | PeerTube-64e0f8cf12c804a7a2fa582fd954f686cea9a45b.tar.gz PeerTube-64e0f8cf12c804a7a2fa582fd954f686cea9a45b.tar.zst PeerTube-64e0f8cf12c804a7a2fa582fd954f686cea9a45b.zip |
Fix scrolling with hash in url
Diffstat (limited to 'client/src/app/app.component.ts')
-rw-r--r-- | client/src/app/app.component.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts index c77dc97de..5541f5558 100644 --- a/client/src/app/app.component.ts +++ b/client/src/app/app.component.ts | |||
@@ -123,6 +123,7 @@ export class AppComponent implements OnInit, AfterViewInit { | |||
123 | const scrollEvent = eventsObs.pipe(filter((e: Event): e is Scroll => e instanceof Scroll)) | 123 | const scrollEvent = eventsObs.pipe(filter((e: Event): e is Scroll => e instanceof Scroll)) |
124 | 124 | ||
125 | scrollEvent.subscribe(e => { | 125 | scrollEvent.subscribe(e => { |
126 | console.log(e) | ||
126 | if (e.position) { | 127 | if (e.position) { |
127 | return this.viewportScroller.scrollToPosition(e.position) | 128 | return this.viewportScroller.scrollToPosition(e.position) |
128 | } | 129 | } |