mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-01 19:42:48 +00:00
fix(core(js)): Removed es6 'const' for build issues with grunt
This commit is contained in:
@@ -226,7 +226,7 @@
|
||||
},
|
||||
|
||||
passwordRecovery: function (userName, domain) {
|
||||
const self = this;
|
||||
var self = this;
|
||||
|
||||
var d = $q.defer(),
|
||||
xsrfCookie = $cookies.get('XSRF-TOKEN');
|
||||
@@ -257,7 +257,7 @@
|
||||
|
||||
|
||||
passwordRecoveryEmail: function (userName, domain, mode, mailDomain) {
|
||||
const self = this;
|
||||
var self = this;
|
||||
|
||||
var d = $q.defer(),
|
||||
xsrfCookie = $cookies.get('XSRF-TOKEN');
|
||||
@@ -283,7 +283,7 @@
|
||||
|
||||
|
||||
passwordRecoveryCheck: function (userName, domain, mode, question, answer, mailDomain) {
|
||||
const self = this;
|
||||
var self = this;
|
||||
|
||||
var d = $q.defer(),
|
||||
xsrfCookie = $cookies.get('XSRF-TOKEN');
|
||||
@@ -308,7 +308,7 @@
|
||||
},
|
||||
|
||||
passwordRecoveryEnabled: function (userName, domain) {
|
||||
const self = this;
|
||||
var self = this;
|
||||
|
||||
var d = $q.defer();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user