mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
18 lines
374 B
CoffeeScript
18 lines
374 B
CoffeeScript
Darkswarm.factory 'HashNavigation', ($location) ->
|
|
new class HashNavigation
|
|
hash: null
|
|
|
|
active: (hash)->
|
|
$location.hash() == hash
|
|
|
|
navigate: (hash)->
|
|
@hash = hash
|
|
$location.hash(@hash)
|
|
|
|
toggle: (hash = false)->
|
|
@hash = hash || @hash
|
|
if $location.hash() == @hash
|
|
$location.hash("")
|
|
else
|
|
@navigate(hash)
|