2017-02-22 18:13:21 +00:00
|
|
|
/* tslint:disable:no-unused-variable */
|
|
|
|
// #docregion
|
2017-10-17 16:42:05 -07:00
|
|
|
import { Directive, ElementRef } from '@angular/core';
|
2017-02-22 18:13:21 +00:00
|
|
|
|
2017-10-17 16:42:05 -07:00
|
|
|
@Directive({
|
|
|
|
selector: '[appHighlight]'
|
|
|
|
})
|
2017-02-22 18:13:21 +00:00
|
|
|
export class HighlightDirective {
|
|
|
|
constructor(el: ElementRef) {
|
|
|
|
el.nativeElement.style.backgroundColor = 'yellow';
|
|
|
|
}
|
|
|
|
}
|