The object in question looks like this
{{
schedule['Monday']
schedule['Tuesday']
....
}}
I need to:
- get
schedule['{{date | 'EEEE'}}'] - highlight it in html template
- display something like
{{date | 'EEEE'}} 's schedule is {{schedule['{{date | 'EEEE'}}]}}
I'm trying to use a loop to create this for days of the week. i.e use ng-repeat and filter by current day.
This needs to be done to write different HTML for current day scenario vs. other days - example Add a custom class.