mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
9 lines
280 B
CoffeeScript
9 lines
280 B
CoffeeScript
window.SidebarCtrl = Darkswarm.controller "SidebarCtrl", ($scope, $location) ->
|
|
$scope.$watch ->
|
|
$location.path()
|
|
, ->
|
|
$scope.active_sidebar = $location.path()
|
|
|
|
$scope.active = ->
|
|
return "active" if $scope.active_sidebar != null and $scope.active_sidebar != ""
|