]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - autofocus.directive.ts
2da492ea11ef62c6cc4f25db05a3946040f79dbd
[github/Chocobozzz/PeerTube.git] / autofocus.directive.ts
1 import { AfterViewInit, Directive, ElementRef } from '@angular/core'
2
3 @Directive({
4 selector: '[myAutofocus]'
5 })
6 export class AutofocusDirective implements AfterViewInit {
7 constructor (private host: ElementRef) { }
8
9 ngAfterViewInit () {
10 this.host.nativeElement.focus()
11 }
12 }