mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
13 lines
332 B
CoffeeScript
13 lines
332 B
CoffeeScript
window.MenuCtrl = Darkswarm.controller "MenuCtrl", ($scope, $location) ->
|
|
$scope.toggleLogin = ->
|
|
if $location.path() == "/login"
|
|
$location.path("/")
|
|
else
|
|
$location.path("login")
|
|
|
|
$scope.toggleSignup = ->
|
|
if $location.path() == "/signup"
|
|
$location.path("/")
|
|
else
|
|
$location.path("signup")
|