diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-11-12 16:22:14 +0000 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-11-12 16:22:22 +0000 |
commit | 3d3f692fd8a3fe07daf2f5b8811ebc00846b60c1 (patch) | |
tree | dfaed70738c44a948bb41dc410ea77aa4a1449c6 /syweb/webclient/components | |
parent | Add a few more comments to the federation handler (diff) | |
download | synapse-3d3f692fd8a3fe07daf2f5b8811ebc00846b60c1.tar.xz |
Add test coverage to the webclient. Update .gitignore
Diffstat (limited to 'syweb/webclient/components')
-rw-r--r-- | syweb/webclient/components/matrix/matrix-service.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syweb/webclient/components/matrix/matrix-service.js b/syweb/webclient/components/matrix/matrix-service.js index c1264887c8..cfe8691f85 100644 --- a/syweb/webclient/components/matrix/matrix-service.js +++ b/syweb/webclient/components/matrix/matrix-service.js @@ -23,7 +23,7 @@ This serves to isolate the caller from changes to the underlying url paths, as well as attach common params (e.g. access_token) to requests. */ angular.module('matrixService', []) -.factory('matrixService', ['$http', '$q', '$rootScope', function($http, $q, $rootScope) { +.factory('matrixService', ['$http', '$q', function($http, $q) { /* * Permanent storage of user information |