mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-26 01:33:22 +00:00
15 lines
334 B
CoffeeScript
15 lines
334 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)
|
|
|
|
go: (path)->
|
|
window.location.pathname = path
|