chore: rename if to ng-if
This commit is contained in:
6
modules/angular2/directives.js
vendored
6
modules/angular2/directives.js
vendored
@ -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
|
||||
]);
|
||||
|
Reference in New Issue
Block a user