I need to do a console.log
of a filter which is actually a finder, I have this
<input type="search" ng-model="query">
and in my controller I declare it this way
$scope.query = '';
if I do console.log($scope.query)
nothing happens once I type in the search box, so how can I know what the filter is filtering ?