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
Steps to reproduce and a minimal demo of the problem
Sometimes is useful to detect in directives if we are under a IE version to generate fallback solutions
Current behavior
Nothing is present
Expected/desired behavior
I think if we add a new service that we can use consistency might be useful, here is the code of the service implemented in other project.
import angular from 'angular'; angular .module('app') .factory('ie', ie); function ie() { return { isActive: isActive, isEdge: isEdge, is11: isIE11, isOld: isOldVersion }; function isActive(){ return isEdge() || isIE11() || isOldVersion(); } function isEdge(){ return /Edge/.test(navigator.userAgent); } function isIE11(){ return /Trident.*rv[ :]*11./.test(navigator.userAgent); } function isOldVersion(){ return /MSIE/.test(navigator.appVersion); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to reproduce and a minimal demo of the problem
Sometimes is useful to detect in directives if we are under a IE version to generate fallback solutions
Current behavior
Nothing is present
Expected/desired behavior
I think if we add a new service that we can use consistency might be useful, here is the code of the service implemented in other project.
The text was updated successfully, but these errors were encountered: