[Web] U2F: Don't check for Firefox, check only if U2F API is implemented

master
André Peters 2019-01-30 00:41:35 +01:00 committed by GitHub
commit 3199c34417
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -20,10 +20,9 @@
* Modification:
* Only continue load this library if window.u2f is not already supplied by the browser.
*/
var isFirefox = navigator.userAgent.indexOf('Firefox') !== -1 || navigator.userAgent.indexOf('Gecko/') !== -1;
var browserImplementsU2f = !!((typeof root.u2f !== 'undefined') && root.u2f.register);
if (isFirefox && browserImplementsU2f) {
if (browserImplementsU2f) {
root.u2f.isSupported = true;
return;
}