You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
In some cases IE runs in a different document mode (mainly depending of doctype) and it can cause some errors:
Angular tests the IE version (like in angular.js line 2057: if (msie <= 8) ) but doesn't test the document.documentMode (specific to IE).
I guess we could replace the msie variable by the document.documentMode if exists because the user-agent isn't a reliable test for feature detection, whereas documentMode is a little better.
The text was updated successfully, but these errors were encountered:
In some cases IE runs in a different document mode (mainly depending of doctype) and it can cause some errors:
Angular tests the IE version (like in angular.js line 2057: if (msie <= 8) ) but doesn't test the document.documentMode (specific to IE).
I guess we could replace the msie variable by the document.documentMode if exists because the user-agent isn't a reliable test for feature detection, whereas documentMode is a little better.
The text was updated successfully, but these errors were encountered: