mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
14 lines
407 B
CoffeeScript
14 lines
407 B
CoffeeScript
Darkswarm.controller "ProducersCtrl", ($scope, Producers, $filter, FilterSelectorsService, Search) ->
|
|
$scope.Producers = Producers
|
|
$scope.totalActive = FilterSelectorsService.totalActive
|
|
$scope.clearAll = FilterSelectorsService.clearAll
|
|
$scope.filtersActive = true
|
|
$scope.activeTaxons = []
|
|
$scope.query = Search.search()
|
|
|
|
$scope.$watch "query", (query)->
|
|
Search.search query
|
|
|
|
|
|
|