mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-11 23:17:48 +00:00
22 lines
452 B
CoffeeScript
22 lines
452 B
CoffeeScript
Darkswarm.factory 'Navigation', ($location) ->
|
|
new class Navigation
|
|
path: null
|
|
|
|
active: (path)->
|
|
$location.path() == path
|
|
|
|
navigate: (path)=>
|
|
@path = path
|
|
$location.path(@path)
|
|
|
|
toggle: (path = false)=>
|
|
console.log "toggling"
|
|
@path = path || @path
|
|
if $location.path() == @path
|
|
$location.path("/")
|
|
else
|
|
@navigate(path)
|
|
|
|
go: (path)->
|
|
window.location.pathname = path
|