A question about filters and routes - if the application is in a state after the user has picked a load of filters, is it possible to share the url so another user receives the same state.
for example on my ng-repeat I have something htat looks like this :-
<ul
ng-repeat="event in filteredItems = ( events | filter:{ festivalApplicationId: search.festivalApplicationId, interestId: search.interestId, eventTypeId: search.eventTypeId, expId: search.expId})">
So I guess A) I need to update the url everytime a filter is changed and B) pull this logic off the page and in to a controller?
Any suggestions or help would be much appreciated.