aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/angular
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-06-15 14:36:24 +0200
committerChocobozzz <me@florianbigard.com>2022-06-15 14:36:24 +0200
commit04c2dcfc6b78c7e8714597f9d5370b6b2c87dece (patch)
treec017176c3e2b4739044fa1139de25e70739185b7 /client/src/app/shared/shared-main/angular
parent1105696623c4b691bf2d44489ad25a752cbd8cc7 (diff)
downloadPeerTube-04c2dcfc6b78c7e8714597f9d5370b6b2c87dece.tar.gz
PeerTube-04c2dcfc6b78c7e8714597f9d5370b6b2c87dece.tar.zst
PeerTube-04c2dcfc6b78c7e8714597f9d5370b6b2c87dece.zip
Fix login form scrolling
Diffstat (limited to 'client/src/app/shared/shared-main/angular')
-rw-r--r--client/src/app/shared/shared-main/angular/autofocus.directive.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/src/app/shared/shared-main/angular/autofocus.directive.ts b/client/src/app/shared/shared-main/angular/autofocus.directive.ts
index 2da492ea1..051635f45 100644
--- a/client/src/app/shared/shared-main/angular/autofocus.directive.ts
+++ b/client/src/app/shared/shared-main/angular/autofocus.directive.ts
@@ -7,6 +7,8 @@ export class AutofocusDirective implements AfterViewInit {
7 constructor (private host: ElementRef) { } 7 constructor (private host: ElementRef) { }
8 8
9 ngAfterViewInit () { 9 ngAfterViewInit () {
10 this.host.nativeElement.focus() 10 const el = this.host.nativeElement as HTMLElement
11
12 el.focus({ preventScroll: true })
11 } 13 }
12} 14}