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