Merge pull request #5414 from tsiegleauq/support-chrome-80

Lower chrome/chromium support version to version
This commit is contained in:
Sean 2020-06-12 11:08:26 +02:00 committed by GitHub
commit 7d3280707d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -3,12 +3,12 @@ import { Injectable } from '@angular/core';
import { DeviceDetectorService, DeviceInfo } from 'ngx-device-detector';
const SmallestSupportedBrowserVersion = {
Chrome: 81,
Chrome: 80,
Safari: 13,
Firefox: 68,
Opera: 66,
'MS-Edge': 81,
'MS-Edge-Chromium': 81
'MS-Edge': 80,
'MS-Edge-Chromium': 80
};
const BrowserBlacklist = ['IE'];