I have an ng-repeat like this:
<li data-ng-repeat="something in things | filter: {filter1: true, filter2: 'somestring'}">{{ something.title }}</li>
In Angular 1.1.5 I used to be able to set filter1 and filter2 to null and no filters would be applied, but since I updated to 1.2.7 this no longer works, how can I programmatically disable the filter?
filter1: nullthat it should display only the items that aresomething.filter1 = null? There's probably another way to accomplish what you're after.