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
|
|
|
|
|
|
|
@Directive({
|
2015-12-10 23:27:41 -05:00
|
|
|
selector: '[myHighlight]'
|
2015-11-19 19:59:22 -05:00
|
|
|
})
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
// #enddocregion
|