I don't know what I am missing!
I have a legend, and the user can choose each color's description, but when I try and edit the text, it gets updated in the view, but as soon as I refresh all the changes are reverted, so how can I keep the changes in the controller?
<div ng-repeat="s in legendItems">
<div class="epLegendeColorBoxPopover" ng-style='{"background-color": s.color}'></div><input type="text" ng-model="s.description">
</div>
here a fiddle
http://jsfiddle.net/NfPcH/23697/
thank you