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