i'm completely new to angular so forgive my question. I'm trying to create a list of filters with the user input. Here's a plunker of what i'm trying to do. http://plnkr.co/edit/asrZJj2HFJCnmmqJLlgt?p=preview
I understand that my condition for my ng-repeat should be something like that:
ng-repeat="filter in filters | filter: filters"
and inside my filters something like that to work
ng-repeat="...| filter:{dev:java, happy:true}"
So can i do it in the way i'm trying to do or i have to create a filter module?