-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FIDES-1429: Safari < 14 support #5410
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Skipped Deployment
|
fides Run #10589
Run Properties:
|
Project |
fides
|
Branch Review |
refs/pull/5410/merge
|
Run status |
Passed #10589
|
Run duration | 00m 38s |
Commit |
0e5f65f23b ℹ️: Merge 9320554475b54402bae336aa6adc409485f9e8e3 into 17516d5c2527810be89c318fc2ef...
|
Committer | Tom Van Dort |
View all properties for this run ↗︎ |
Test results | |
---|---|
Failures |
0
|
Flaky |
0
|
Pending |
0
|
Skipped |
0
|
Passing |
4
|
Upgrade your plan to view test results. | |
View all changes introduced in this branch ↗︎ |
gilluminate
reviewed
Oct 23, 2024
if (matchQueryList.addEventListener) { | ||
matchQueryList.addEventListener("change", handleChange); | ||
} else { | ||
// Supports Safari < 14 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would suggest leaving this note out or updating it to be more generic. There's a good chance someone might see it and remove due to old browsers not being officially supported.
Suggested change
// Supports Safari < 14 | |
// Older browser and test automation support |
gilluminate
approved these changes
Oct 23, 2024
fides Run #10591
Run Properties:
|
Project |
fides
|
Branch Review |
main
|
Run status |
Passed #10591
|
Run duration | 00m 41s |
Commit |
661347a700: FIDES-1429: Safari < 14 support (#5410)
|
Committer | Tom Van Dort |
View all properties for this run ↗︎ |
Test results | |
---|---|
Failures |
0
|
Flaky |
0
|
Pending |
0
|
Skipped |
0
|
Passing |
4
|
Upgrade your plan to view test results. | |
View all changes introduced in this branch ↗︎ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes FIDES-1429
Description Of Changes
The method we're using for media queries only became available as of Safari 14. Applied the work around mentioned in the stackoverflow post below to use an API that is available in Safari 13 when necessary.
https://stackoverflow.com/questions/62693995/addeventlistener-is-not-a-function-for-matchmedia-in-safari-browser/75517985#75517985
Code Changes
Steps to Confirm
Pre-Merge Checklist
CHANGELOG.md
main
downgrade()
migration is correct and works