1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 14:53:33 +00:00

lint fixes

This commit is contained in:
Kyle Spearrin
2017-10-06 10:36:45 -04:00
parent 7394cec986
commit 79f20f09cb
8 changed files with 20 additions and 17 deletions

View File

@@ -220,6 +220,7 @@ function initCryptoService(constantsService) {
var decPromises = [];
for (var orgId in obj.encOrgKeys) {
if (obj.encOrgKeys.hasOwnProperty(orgId)) {
/* jshint ignore:start */
(function (orgIdInstance) {
var promise = self.rsaDecrypt(obj.encOrgKeys[orgIdInstance]).then(function (decValueB64) {
orgKeys[orgIdInstance] = new SymmetricCryptoKey(decValueB64, true);
@@ -229,6 +230,7 @@ function initCryptoService(constantsService) {
});
decPromises.push(promise);
})(orgId);
/* jshint ignore:end */
}
}