I have a small AngularJS app which searches and retrieves a listing of users and their next scheduled meeting (assuming one is scheduled in the next 8 hours) brought back from the server using JSON with the time format in UTC for ease of calculation to local times. I have the javascript written to be able to calculate the time remaining, what I do not have written or figured out is how to do this within Angular.
What I would like to accomplish is to be able to update the DOM with time remaining until the meeting scheduled has completed or time left until the meeting starts. It seems straight forward if updating a single element using the $timeout service, however I am not clear on how to accomplish this task within an ng-repeat for several items at a time.
Any ideas would be appreciated! Thanks!