Skip to content

Commit

Permalink
feat(coreDirectives): add NgClass to coreDirectives
Browse files Browse the repository at this point in the history
Closes #3534
  • Loading branch information
pkozlowski-opensource committed Aug 10, 2015
1 parent 4f5e405 commit 6bd95c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/angular2/directives.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -60,4 +61,4 @@ export * from './src/directives/ng_switch';
*
*/
export const coreDirectives: List<Type> =
CONST_EXPR([NgFor, NgIf, NgNonBindable, NgSwitch, NgSwitchWhen, NgSwitchDefault]);
CONST_EXPR([NgClass, NgFor, NgIf, NgNonBindable, NgSwitch, NgSwitchWhen, NgSwitchDefault]);

0 comments on commit 6bd95c1

Please sign in to comment.