Files
MASA/app/partials/report/report.services.js

16 lines
401 B
JavaScript
Raw Permalink Normal View History

2016-02-29 00:49:18 -04:30
(function(){
'use strict';
angular
.module('app.reports')
2016-04-11 00:05:59 -04:30
//.factory('ReportJson', ReportJson)
2016-02-29 00:49:18 -04:30
.value('id',{})
2016-04-11 00:05:59 -04:30
/*ReportJson.$inject = ['$resource','$rootScope'];
2016-02-29 00:49:18 -04:30
function ReportJson($resource, $rootScope){
2016-04-11 00:05:59 -04:30
//return $resource('http://'+$rootScope.domainUrl+'/api/reports/:id');
var json="data/data.json";
return $resource(json);
};*/
2016-02-29 00:49:18 -04:30
})();