Using 2.0.0-alpha.32 and I am finding that using local variable names that are not all lowercase is problematic. Consider:
<input #txtToDo (keyup)="txtTodoKeyupHandler($event)"> <button (click)="addTodo(txtToDo.value)">Add Todo</button> When I look at the DOM in Chrome I see: <input #txttodo="" (keyup)="txtTodoKeyupHandler($event)" class="ng-binding"> <button (click)="addTodo(txtToDo.value)" class="ng-binding">Add Todo</button> Somewhere along the way txtToDo was forced to lowercase. Is this a "feature" or a bug? -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
