We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Firefox 102, I see a warning logged to the console on the project home page:
InstallTrigger is deprecated and will be removed in the future. favico.min.js:7:819
It seems this has been deprecated since Firefox v100: 1754441 - Deprecate InstallTrigger
As far as I can see, this is only used for browser detection:
_browser.ff = typeof InstallTrigger != 'undefined';
The text was updated successfully, but these errors were encountered:
changing line with this will resolve the issue;
_browser.ff = navigator.userAgent.toLowerCase().includes('firefox');
Sorry, something went wrong.
No branches or pull requests
In Firefox 102, I see a warning logged to the console on the project home page:
It seems this has been deprecated since Firefox v100:
1754441 - Deprecate InstallTrigger
As far as I can see, this is only used for browser detection:
The text was updated successfully, but these errors were encountered: