Files
openfoodnetwork/app/assets/javascripts/darkswarm/controllers/sidebar_controller.js.coffee
2014-03-20 16:58:57 +11:00

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 != ""