Files
openfoodnetwork/app/assets/javascripts/darkswarm/services/navigation.js.coffee
2014-05-06 18:28:20 +10:00

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