Revert "app: hide IE11 deprecation banner during the strike"

This reverts commit c2882b6cc3.
This commit is contained in:
Pierre de La Morinerie 2020-01-28 11:28:12 +01:00
parent d73dbc5056
commit 745b00366f
2 changed files with 6 additions and 7 deletions

View file

@ -2,7 +2,6 @@
Browser.modern_rules.clear
Browser.modern_rules << -> b { b.chrome? && b.version.to_i >= 50 && !b.platform.ios? }
Browser.modern_rules << -> b { b.edge? && b.version.to_i >= 14 && !b.compatibility_view? }
Browser.modern_rules << -> b { b.ie? && b.version.to_i >= 11 && !b.compatibility_view? }
Browser.modern_rules << -> b { b.firefox? && b.version.to_i >= 50 && !b.platform.ios? }
Browser.modern_rules << -> b { b.opera? && b.version.to_i >= 40 }
Browser.modern_rules << -> b { b.safari? && b.version.to_i >= 8 }