mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
12 lines
369 B
CoffeeScript
12 lines
369 B
CoffeeScript
Darkswarm.controller "TabsCtrl", ($scope, $rootScope, $location, OrderCycle) ->
|
|
# Return active if supplied path matches url hash path.
|
|
$scope.active = (path)->
|
|
$location.hash() == path
|
|
|
|
# Toggle tab selected status by setting the url hash path.
|
|
$scope.select = (path)->
|
|
if $scope.active(path)
|
|
$location.hash ""
|
|
else
|
|
$location.hash path
|