Skip to content

Commit 19fcb06

Browse files
joswhitegrantila
authored andcommitted
fix(compat): Check properly for IE and Edge browsers
- IE and Edge browsers do not have built-in support for u2f - Previously we only checked for <= v. 15 of EdgeHTML (Edge's rendering engine, so now we check for all versions of EdgeHTML) - Check for Edge Chromium, which has a new UserAgent string: "edg/<version>" Fixes #18
1 parent 84d9d60 commit 19fcb06

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

lib/u2f-api.ts

+6-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ import * as chromeApi from './generated-google-u2f-api'
44

55

66
// Feature detection (yes really)
7+
// For IE and Edge detection, see https://stackoverflow.com/questions/31757852#31757969
8+
// and https://stackoverflow.com/questions/56360225#56361977
79
const isBrowser =
810
( typeof navigator !== 'undefined' ) && !!navigator.userAgent;
911
const isSafari = isBrowser && navigator.userAgent.match( /Safari\// )
1012
&& !navigator.userAgent.match( /Chrome\// );
11-
const isEDGE = isBrowser && navigator.userAgent.match( /Edge\/1[2345]/ );
13+
const isEDGE = isBrowser && /(Edge\/)|(edg\/)/i.test(navigator.userAgent);
14+
const isIE = isBrowser && /(MSIE 9|MSIE 10|rv:11.0)/i.test(navigator.userAgent);
1215

1316
interface API
1417
{
@@ -76,8 +79,8 @@ function getBackend( )
7679
if ( hasNativeSupport )
7780
return resolve( { u2f: ( < any >window ).u2f } );
7881

79-
if ( isEDGE )
80-
// We don't want to check for Google's extension hack on EDGE
82+
if ( isEDGE || isIE )
83+
// We don't want to check for Google's extension hack on EDGE & IE
8184
// as it'll cause trouble (popups, etc)
8285
return notSupported( );
8386

0 commit comments

Comments
 (0)