2015-11-19 19:59:22 -05:00
|
|
|
// #docregion
|
2016-05-03 08:06:32 -04:00
|
|
|
import { Directive, ElementRef, Input } from '@angular/core';
|
2015-11-19 19:59:22 -05:00
|
|
|
|
2016-05-06 10:42:01 -04:00
|
|
|
@Directive({ selector: '[myHighlight]' })
|
2015-12-16 22:38:07 -05:00
|
|
|
export class HighlightDirective {
|
2016-01-26 16:42:17 -05:00
|
|
|
constructor(el: ElementRef) {
|
|
|
|
el.nativeElement.style.backgroundColor = 'yellow';
|
2015-11-19 19:59:22 -05:00
|
|
|
}
|
|
|
|
}
|