Punktonerzy/FrontEnd/src/app/autofocus.directive.ts

16 lines
285 B
TypeScript

import { Directive, AfterViewInit, ElementRef } from '@angular/core';
@Directive({
selector: '[appAutofocus]'
})
export class AutofocusDirective implements AfterViewInit {
constructor(private el: ElementRef) {
}
ngAfterViewInit() {
this.el.nativeElement.focus();
}
}