mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
9 lines
389 B
CoffeeScript
9 lines
389 B
CoffeeScript
angular.module('Darkswarm').controller "GroupTabsCtrl", ($scope, $controller, Navigation) ->
|
|
angular.extend this, $controller('TabsCtrl', {$scope: $scope})
|
|
|
|
$scope.tabs =
|
|
map: { active: Navigation.isActive('/map') }
|
|
about: { active: Navigation.isActive('/about') }
|
|
producers: { active: Navigation.isActive('/producers') }
|
|
hubs: { active: Navigation.isActive('/hubs') }
|