13 lines
289 B
TypeScript
13 lines
289 B
TypeScript
/* tslint:disable:no-unused-variable */
|
|
// #docregion
|
|
import { Directive, ElementRef } from '@angular/core';
|
|
|
|
@Directive({
|
|
selector: '[appHighlight]'
|
|
})
|
|
export class HighlightDirective {
|
|
constructor(el: ElementRef) {
|
|
el.nativeElement.style.backgroundColor = 'yellow';
|
|
}
|
|
}
|