From f75559a16d48af19de14f5697630a295bdd7ae9e Mon Sep 17 00:00:00 2001 From: Jaden Diefenbaugh <jaden.diefenbaugh@idiap.ch> Date: Tue, 19 Dec 2017 09:29:57 +0100 Subject: [PATCH] fix angular dependency injection scheme --- .../reports/static/reports/app/factories/experimentFactory.js | 4 ++-- .../reports/static/reports/app/factories/plotterFactory.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/beat/web/reports/static/reports/app/factories/experimentFactory.js b/beat/web/reports/static/reports/app/factories/experimentFactory.js index 4f0d7234e..0a53f7200 100644 --- a/beat/web/reports/static/reports/app/factories/experimentFactory.js +++ b/beat/web/reports/static/reports/app/factories/experimentFactory.js @@ -20,7 +20,7 @@ * with the BEAT platform. If not, see http://www.gnu.org/licenses/. */ //This factory retrieves data from the REST API and associates it with the $scope -angular.module('reportApp').factory('experimentFactory', 'UrlService', function($http, $q, UrlService){ +angular.module('reportApp').factory('experimentFactory', ['$http', 'UrlService', function($http, UrlService){ let urlBase = '/api/v1/experiments'; let prefix = new URL(UrlService.getPrefix()).pathname; if(prefix.endsWith('/')) @@ -51,4 +51,4 @@ angular.module('reportApp').factory('experimentFactory', 'UrlService', function( }); } }; -}); +}]); diff --git a/beat/web/reports/static/reports/app/factories/plotterFactory.js b/beat/web/reports/static/reports/app/factories/plotterFactory.js index f06d2ccd1..7336320c3 100644 --- a/beat/web/reports/static/reports/app/factories/plotterFactory.js +++ b/beat/web/reports/static/reports/app/factories/plotterFactory.js @@ -20,7 +20,7 @@ * with the BEAT platform. If not, see http://www.gnu.org/licenses/. */ //This factory retrieves data from the REST API and associates it with the $scope -angular.module('reportApp').factory('plotterFactory', ['$http', function($http){ +angular.module('reportApp').factory('plotterFactory', ['$http', 'UrlService', function($http, UrlService){ let prefix = new URL(UrlService.getPrefix()).pathname; if(prefix.endsWith('/')) prefix = prefix.slice(0, -1); -- GitLab