I\'m working on a project in angularjs that has a list of objects which update in real time and will be reordered with each update. I want to animate these objects moving s
I think I've accomplished what you're looking for here: http://codepen.io/daleyjem/pen/xbZYpY
By using track by, I'm able to keep the DOM elements from being recreated, and can then manipulate their position.
track by
{{ item.id }}: {{ item.last_name }}, {{ item.first_name }}