aboutsummaryrefslogtreecommitdiffstats
path: root/docs/docs.js
blob: 6f5c5034c938fab7be0a07d521e3df40b69c4e6f (plain)
1
2
3
4
5
6
7
function DocController($resource, $location){
  this.docs = $resource('documentation.json').get();
  this.getPartialDoc = function(){
    return encodeURIComponent($location.hashPath) + '.html';
  };
}
DocController.$inject=['$resource', '$location'];