mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
24 lines
511 B
CoffeeScript
24 lines
511 B
CoffeeScript
Darkswarm.factory 'Navigation', ($location, $window) ->
|
|
new class Navigation
|
|
path: null
|
|
|
|
active: (path)->
|
|
$location.path() == path
|
|
|
|
navigate: (path)=>
|
|
@path = path
|
|
$location.path(@path)
|
|
|
|
toggle: (path = false)=>
|
|
@path = path || @path
|
|
if $location.path() == @path
|
|
$location.path("/")
|
|
else
|
|
@navigate(path)
|
|
|
|
go: (path)->
|
|
if path.match /^http/
|
|
$window.location.href = path
|
|
else
|
|
$window.location.pathname = path
|