mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
13 lines
278 B
CoffeeScript
13 lines
278 B
CoffeeScript
Darkswarm.factory 'Navigation', ($location) ->
|
|
new class Navigation
|
|
paths: []
|
|
path: null
|
|
|
|
navigate: (path = false)->
|
|
@path = path || @path || @paths[0]
|
|
|
|
if $location.path() == @path
|
|
$location.path("/")
|
|
else
|
|
$location.path(@path)
|