browsers: enforce IE 11 as the minimum required IE version
This is already documented in the README, but not enforced.
This commit is contained in:
parent
a74e60f6b1
commit
22b83dd67c
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
Browser.modern_rules.clear
|
||||
Browser.modern_rules << -> b { b.chrome? && b.version.to_i >= 40 }
|
||||
Browser.modern_rules << -> b { b.ie?([">=10"]) }
|
||||
Browser.modern_rules << -> b { b.ie?([">=11"]) }
|
||||
Browser.modern_rules << -> b { b.edge? }
|
||||
Browser.modern_rules << -> b { b.firefox? && b.version.to_i >= 45 }
|
||||
Browser.modern_rules << -> b { b.opera? && b.version.to_i >= 19 }
|
||||
|
|
Loading…
Reference in a new issue