chore: rename if to ng-if

This commit is contained in:
Misko Hevery
2015-05-11 15:58:59 -07:00
parent 7dc524ed58
commit d310a9c0b4
13 changed files with 56 additions and 56 deletions

View File

@ -7,13 +7,13 @@
import {CONST_EXPR} from './src/facade/lang';
import {For} from './src/directives/for';
import {If} from './src/directives/if';
import {NgIf} from './src/directives/ng_if';
import {NonBindable} from './src/directives/non_bindable';
import {Switch, SwitchWhen, SwitchDefault} from './src/directives/switch';
export * from './src/directives/class';
export * from './src/directives/for';
export * from './src/directives/if';
export * from './src/directives/ng_if';
export * from './src/directives/non_bindable';
export * from './src/directives/switch';
@ -58,5 +58,5 @@ export * from './src/directives/switch';
*
*/
export const coreDirectives:List = CONST_EXPR([
For, If, NonBindable, Switch, SwitchWhen, SwitchDefault
For, NgIf, NonBindable, Switch, SwitchWhen, SwitchDefault
]);