ngUpgraders / ng-forward

The default solution for those that want to write Angular 2.x style code in Angular 1.x
410 stars 36 forks source link

Can't get ng-for to work #147

Closed reflog closed 8 years ago

reflog commented 8 years ago

Is there anything special I should do so that code like this:

<span *ng-for="#pass in ctrl.pass">{{pass}}</span>
<input [value]="ctrl.pass">

will work? For now, it just generates this node:

<span ng-for="#pass in ctrl.pass" class="ng-binding"></span>
<input [value]="ctrl.pass">

but doesn't actually bind it

timkindberg commented 8 years ago

We've not polyfills ngFor. Please use Ng-repeat.