Skip to content

Commit 35597a8

Browse files
style(ngFor): add whitespace to Directive annotation
1 parent 45cbc43 commit 35597a8

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

modules/angular2/src/directives/ng_for.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,11 @@ import {isPresent, isBlank} from 'angular2/src/facade/lang';
3333
* - `<li template="ng-for #item of items; #i = index">...</li>`
3434
* - `<template ng-for #item [ng-for-of]="items" #i="index"><li>...</li></template>`
3535
*/
36-
@Directive(
37-
{selector: '[ng-for][ng-for-of]', properties: ['ngForOf'], lifecycle: [LifecycleEvent.onCheck]})
36+
@Directive({
37+
selector: '[ng-for][ng-for-of]',
38+
properties: ['ngForOf'],
39+
lifecycle: [LifecycleEvent.onCheck]
40+
})
3841
export class NgFor {
3942
_ngForOf: any;
4043
_pipe: Pipe;

0 commit comments

Comments
 (0)