All code here: http://stevendavisphoto.com/mc/
Filter: <input type="text" ng-model="search">
<tr ng-repeat="(id, group) in groups | filter:search" class="editing-{{group.editing}}">
I want the rows to filter out if they don't match what's in the input. It doesn't seem to do anything. I know {{search}} is changing, but the filter isn't working.