Disabled webcrypto for msie

This commit is contained in:
Igor Zhukov 2014-11-12 15:34:56 +03:00
parent bbdc02063d
commit bdf4f28c17

View File

@ -488,7 +488,7 @@ angular.module('izhukov.utils', [])
naClEmbed = false,
taskID = 0,
awaiting = {},
webCrypto = window.crypto && (window.crypto.subtle || window.crypto.webkitSubtle) || window.msCrypto && window.msCrypto.subtle,
webCrypto = window.crypto && (window.crypto.subtle || window.crypto.webkitSubtle)/* || window.msCrypto && window.msCrypto.subtle*/,
useSha1Crypto = webCrypto && webCrypto.digest !== undefined,
finalizeTask = function (taskID, result) {
var deferred = awaiting[taskID];