Skip to content

Commit

Permalink
style(ngFor): add whitespace to Directive annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
petebacondarwin committed Jul 28, 2015
1 parent 45cbc43 commit 35597a8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions modules/angular2/src/directives/ng_for.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@ import {isPresent, isBlank} from 'angular2/src/facade/lang';
* - `<li template="ng-for #item of items; #i = index">...</li>`
* - `<template ng-for #item [ng-for-of]="items" #i="index"><li>...</li></template>`
*/
@Directive(
{selector: '[ng-for][ng-for-of]', properties: ['ngForOf'], lifecycle: [LifecycleEvent.onCheck]})
@Directive({
selector: '[ng-for][ng-for-of]',
properties: ['ngForOf'],
lifecycle: [LifecycleEvent.onCheck]
})
export class NgFor {
_ngForOf: any;
_pipe: Pipe;
Expand Down

0 comments on commit 35597a8

Please sign in to comment.