Skip to content

Commit

Permalink
Support Safari 13 upwards (#7316)
Browse files Browse the repository at this point in the history
Part of #6856
  • Loading branch information
pleku committed Jan 9, 2020
1 parent 17101eb commit 73b8a10
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -623,10 +623,8 @@ public boolean isTooOldToFunctionProperly() {
if (isIE() && getBrowserMajorVersion() <= 11) {
return true;
}
// Safari 11.1+
if (isSafari() && (getBrowserMajorVersion() < 11
|| getBrowserMajorVersion() == 11
&& getBrowserMinorVersion() <= 1)) {
// Safari 13+
if (isSafari() && getBrowserMajorVersion() < 13) {
return true;
}
// Firefox 43+ for now
Expand Down

0 comments on commit 73b8a10

Please sign in to comment.