diff --git a/crypto.html b/crypto.html
index c4bb5285..22f186db 100644
--- a/crypto.html
+++ b/crypto.html
@@ -375,9 +375,10 @@
return new ByteData();
}
- pbkdf2(newUserKey.arr.buffer, self.masterPasswordBuffer, 1, 256).then(function (userKeyHash) {
- self.userKeyHash = userKeyHash;
- });
+ pbkdf2(newUserKey.arr.buffer, self.masterPasswordBuffer, 1, 256)
+ .then(function (userKeyHash) {
+ self.userKeyHash = userKeyHash;
+ });
}
},
methods: {