mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
12 lines
309 B
CoffeeScript
12 lines
309 B
CoffeeScript
window.SidebarCtrl = Darkswarm.controller "SidebarCtrl", ($scope, $location) ->
|
|
$scope.active_sidebar = $location.path()
|
|
|
|
$scope.$watch ->
|
|
$location.path()
|
|
, ->
|
|
$scope.active_sidebar = $location.path()
|
|
|
|
|
|
$scope.visible = ->
|
|
$scope.active_sidebar != null and $scope.active_sidebar != ""
|