Fix auth manager constructor

This commit is contained in:
Mo Bitar
2018-08-11 19:26:30 -05:00
parent 2203ee9b5e
commit 4f7e6ec507
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
class AuthManager extends SFAuthManager { class AuthManager extends SFAuthManager {
constructor(modelManager, singletonManager, storageManager, dbManager, httpManager, $rootScope, $timeout, $compile) { constructor(modelManager, singletonManager, storageManager, dbManager, httpManager, $rootScope, $timeout, $compile) {
super(storageManager, httpManager, $timeout); super(storageManager, httpManager, null, $timeout);
this.$rootScope = $rootScope; this.$rootScope = $rootScope;
this.$compile = $compile; this.$compile = $compile;
this.modelManager = modelManager; this.modelManager = modelManager;

2
package-lock.json generated
View File

@@ -1,5 +1,5 @@
{ {
"name": "standard-notes", "name": "standard-notes-web",
"version": "1.0.0", "version": "1.0.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,