freifunkmanager/js/router.js

17 lines
265 B
JavaScript
Raw Normal View History

2016-06-23 17:31:39 +02:00
function route(){
if (location.hash === "#aliases") {
routeAliases()
}else if (location.hash === "#map") {
routeMap()
}else if (location.hash === "#statistics") {
routeStatistic()
}else{
routeNodes()
}
}
window.addEventListener("hashchange",route)