diff --git a/u2f-api-polyfill.js b/u2f-api-polyfill.js index ca599f5..d55065a 100644 --- a/u2f-api-polyfill.js +++ b/u2f-api-polyfill.js @@ -11,7 +11,8 @@ 'use strict'; (function (){ - if ('u2f' in window || !('chrome' in window)) { + var isChrome = 'chrome' in window && !window.navigator.userAgent.includes('Edge'); + if ('u2f' in window || !isChrome) { return; }