Looks like this is happening in only Chrome. It works in firefox and safari. For some reason when I type into the input field to edit the value the cursor goes right to the end of the value. I've seen issues like this when ng-model
and value
where in the same input together but my input element only contains ng-model
. So if I try to prepend "Hello
" to a input that already has "World"
in it, it will come out "HWorldello"
Plunker: http://plnkr.co/edit/r9orpQB36P9rH0HpBjaJ?p=preview
<input editable="{{ key }}"
field="{{ list_editable_indexes[key] }}"
ng-model="value"
/>