mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 07:40:22 +00:00
7 lines
251 B
JavaScript
7 lines
251 B
JavaScript
|
|
function DocController($resource, $location){
|
||
|
|
this.docs = $resource('documentation.json').get();
|
||
|
|
this.getPartialDoc = function(){
|
||
|
|
return encodeURIComponent($location.hashPath) + '.html';
|
||
|
|
};
|
||
|
|
}
|
||
|
|
DocController.$inject=['$resource', '$location'];
|