I'm try to use filter | filter: {pro: value}, but I have a very strange error : Error: [$rootScope:infdig] 10 $digest() iterations reached. Aborting!...
In my controller, I just have $scope.slots = […].
My view is very simple : <div time-slots="slots | filter: {day:1}"></div>.
My directive is just templateUrl: 'time-slot.html', restrict: 'A', scope: { timeSlots: '=' }.
I'm totally lost with this error ... I don't understand what's wrong with my code. Here a plunker
Did I do something wrong ?