Merge pull request #15417 from nextcloud/backport/15397/stable16
[stable16] Set Edge < 16 as incompatible with css vars
This commit is contained in:
commit
64d3a51080
|
@ -915,7 +915,10 @@ function initCore() {
|
|||
// css variables fallback for IE
|
||||
if (msie > 0 || trident > 0) {
|
||||
cssVars({
|
||||
watch: true
|
||||
watch: true,
|
||||
// set edge < 16 as incompatible
|
||||
onlyLegacy: !(/Edge\/([0-9]{2})\./i.test(navigator.userAgent)
|
||||
&& parseInt(/Edge\/([0-9]{2})\./i.exec(navigator.userAgent)[1]) < 16)
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue