I've used this example in my project. (It's the groupBy: 'team' clause that I'm trying to make it work)
The dependency in question is angular-filter
http://jsbin.com/weyov/45/edit?html,js,output
The difference in my code from the linked example is that I'm bootstrapping angular module so I'm getting injector errors. (I've tried to use ng-filter)
var app = angular.module("announcements", ["ng-filter"]);
app.controller("Controller", function($scope, $http) {
});
angular.bootstrap(document.getElementById("announcements"), ["announcements"]);
I believe I've to pass something in the angular.module but not sure what value. Please advise.
angular.filterand you're injectingng-filter?