1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

IE fixes and crypto shims

This commit is contained in:
Kyle Spearrin
2017-07-08 00:12:57 -04:00
parent ab12c990bc
commit b62950fa2b
14 changed files with 698 additions and 35 deletions

View File

@@ -45,14 +45,16 @@
return;
}
else if (data.errorCode) {
$scope.deviceError = true;
$scope.$apply();
$timeout(function () {
$scope.deviceError = true;
});
console.log('error: ' + data.errorCode);
return;
}
$scope.deviceResponse = JSON.stringify(data);
$scope.$apply();
$timeout(function () {
$scope.deviceResponse = JSON.stringify(data);
});
}, 10);
};