Skip to content

Commit

Permalink
Support Safari 13 upwards
Browse files Browse the repository at this point in the history
Part of #6856
  • Loading branch information
pleku committed Jan 9, 2020
1 parent 32786dd commit be42807
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -624,9 +624,7 @@ public boolean isTooOldToFunctionProperly() {
return true;
}
// Safari 11.1+
if (isSafari() && (getBrowserMajorVersion() < 11
|| getBrowserMajorVersion() == 11
&& getBrowserMinorVersion() <= 1)) {
if (isSafari() && (getBrowserMajorVersion() < 13)) {
return true;
}
// Firefox 43+ for now
Expand Down

0 comments on commit be42807

Please sign in to comment.