13 lines
		
	
	
		
			272 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			272 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
// #docregion
 | 
						|
import {Directive, ElementRef, Input} from 'angular2/core';
 | 
						|
 | 
						|
@Directive({
 | 
						|
    selector: '[myHighlight]'
 | 
						|
})
 | 
						|
 | 
						|
export class HighlightDirective {
 | 
						|
    constructor(el: ElementRef) {
 | 
						|
       el.nativeElement.style.backgroundColor = 'yellow';
 | 
						|
    }
 | 
						|
}
 | 
						|
// #enddocregion
 |