-
Notifications
You must be signed in to change notification settings - Fork 3
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
suport safari #569
suport safari #569
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -283,17 +283,20 @@ const TutorialPage = (): JSX.Element => { | |
<h1 id="browser-support">Browser support</h1> | ||
<ul> | ||
<li> | ||
Currently, Simularium supports Firefox, Chrome, and | ||
Edge. Some features may not work on other browsers. | ||
Currently, Simularium supports Firefox, Safari, | ||
Chrome, and Edge. Some features may not work on | ||
other browsers. | ||
</li> | ||
<li> | ||
If using Safari on a Mac, please enable WebGL 2.0 by | ||
choosing Develop > Experimental Features and | ||
enabling "WebGL 2.0" (If you do not have a | ||
Develop menu in your menu bar, please first choose | ||
If using Safari on a Mac and it is not working, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: This reads weirdly to me. I'd add something like "If you are using Safari on a Mac and There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @toloudis do you know what the behavior would be if webGl isn't enabled? do they get an error message or is the viewer blank? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We have a webgl1 fallback from webgl2, but if they don't have WebGL at all that's a huge problem. I have no idea what happens then. I think even webgl2 is supported on well over 90% of devices by now. |
||
update your browser to the most recent version. If | ||
you are using an older version, please enable WebGL | ||
meganrm marked this conversation as resolved.
Show resolved
Hide resolved
|
||
2.0 by choosing Develop > Experimental Features | ||
and enabling "WebGL 2.0" (If you do not | ||
have a Develop menu in your menu bar, first choose | ||
Safari > Preferences > Advanced and enable | ||
"Show Develop menu in menu bar".) Then | ||
please reload the viewer. | ||
reload the viewer. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There were too many 'pleases' in this for me when I read it over, but I can add it back. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I wouldn't say "please" at all tbh. The fewer words the better. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agree, please remove all the instances of the word please. Pretty please with sugar on top. I wonder if we can link people to Apple to get full instructions on how to enable WebGL2 on older safari. |
||
</li> | ||
</ul> | ||
</div> | ||
|
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.
Super nit: Does the ordering of the browsers matter at all here? If this was ordered by popularity, it would be Chrome -> Safari -> Edge -> Firefox. Could do it alphabetically too.