UNPKG

novo-elements

Version:

Bullhorn's NOVO Element Repository for Angular 2

14 lines (11 loc) 321 B
// NG2 import { Directive, AfterViewInit, ElementRef } from '@angular/core'; @Directive({ selector: '[keepFilterFocused]' }) export class NovoTableKeepFilterFocus implements AfterViewInit { constructor(private element: ElementRef) { } ngAfterViewInit() { this.element.nativeElement.focus(); } }