mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
15 lines
464 B
CoffeeScript
15 lines
464 B
CoffeeScript
Darkswarm.controller "ProducersCtrl", ($scope, Producers, $filter, FilterSelectorsService, Search) ->
|
|
$scope.Producers = Producers
|
|
$scope.totalActive = FilterSelectorsService.totalActive
|
|
$scope.clearAll = FilterSelectorsService.clearAll
|
|
$scope.filterText = FilterSelectorsService.filterText
|
|
$scope.filtersActive = true
|
|
$scope.activeTaxons = []
|
|
$scope.query = Search.search()
|
|
|
|
$scope.$watch "query", (query)->
|
|
Search.search query
|
|
|
|
|
|
|