From 6bd95c14550c62c2b5b09ef16f7578afcde2c99c Mon Sep 17 00:00:00 2001 From: Pawel Kozlowski Date: Fri, 7 Aug 2015 16:18:26 +0200 Subject: [PATCH] feat(coreDirectives): add NgClass to coreDirectives Closes #3534 --- modules/angular2/directives.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/angular2/directives.ts b/modules/angular2/directives.ts index 7e9203aa82..6684508342 100644 --- a/modules/angular2/directives.ts +++ b/modules/angular2/directives.ts @@ -5,6 +5,7 @@ */ import {CONST_EXPR, Type} from './src/facade/lang'; +import {NgClass} from './src/directives/ng_class'; import {NgFor} from './src/directives/ng_for'; import {NgIf} from './src/directives/ng_if'; import {NgNonBindable} from './src/directives/ng_non_bindable'; @@ -60,4 +61,4 @@ export * from './src/directives/ng_switch'; * */ export const coreDirectives: List = - CONST_EXPR([NgFor, NgIf, NgNonBindable, NgSwitch, NgSwitchWhen, NgSwitchDefault]); + CONST_EXPR([NgClass, NgFor, NgIf, NgNonBindable, NgSwitch, NgSwitchWhen, NgSwitchDefault]);