mikemaccana / outdated-browser-rework

Detects outdated browsers and advises users to upgrade to a new version. Handles mobile devices!
MIT License
226 stars 63 forks source link

No link button on old Ipad #99

Open Flavien-Pensato opened 4 years ago

Flavien-Pensato commented 4 years ago

Hello, I implemented this package a year ago and since I discover that on old Ipad, no redirection button showed.

Screenshot 2020-03-12 at 10 46 18

See my config here:

outdatedBrowserRework({
    browserSupport: {
        'Chrome': 48,
        'Safari': 10,
        'Mobile Safari': 10,
        'Firefox': 40,
        'Opera': 35,
        'IE': 11,
    'Edge': 10,
    },
    requireChromeOnAndroid: false,
    isUnknownBrowserOK: true,
    messages: {
        fr: require('./i18n/fr/locale.json'),
        en: require('./i18n/en/locale.json')
    },
  backgroundColor: '#00cc99',
  textColor: '#ffffff',
});