This repository has been archived by the owner on Feb 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33dc1bb
commit e5fd636
Showing
4 changed files
with
75 additions
and
53 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,12 @@ | |
margin-right: 0.5em; | ||
} | ||
} | ||
|
||
.follow-btn { | ||
display: none; | ||
|
||
&--rendered { | ||
display: inline; | ||
} | ||
} | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,44 +12,42 @@ const HelpTabComponent = () => ( | |
This might be resolved in a future update. | ||
</p> | ||
<h2 className="help-tab__topic">The audio pops, crackles, or snaps</h2> | ||
<p> | ||
Here's some steps you can try: | ||
<ol> | ||
{!isMobile && ( | ||
<li> | ||
Try turning the site volume down and using your computer's volume | ||
instead. | ||
</li> | ||
)} | ||
{isMobile && ( | ||
<li> | ||
If you're using external speakers, try turning your device's volume | ||
down and using your speakers' volume instead. | ||
</li> | ||
)} | ||
Here's some steps you can try: | ||
<ol> | ||
{!isMobile && ( | ||
<li> | ||
Try listening to the pieces towards the end of the list. Some pieces | ||
play better than others. | ||
Try turning the site volume down and using your computer's volume | ||
instead. | ||
</li> | ||
)} | ||
{isMobile && ( | ||
<li> | ||
Try using a more powerful device | ||
{isMobile && ', like a desktop or laptop'}. | ||
If you're using external speakers, try turning your device's volume | ||
down and using your speakers' volume instead. | ||
</li> | ||
</ol> | ||
You can also report the issue{' '} | ||
<a | ||
href="https://github.com/generative-music/generative.fm/issues/new?title=The%20audio%20sucks&body=Please%20describe%20your%20device%2C%20operating%20system%2C%20and%20internet%20browser..." | ||
target="_blank" | ||
rel="noreferrer noopener" | ||
> | ||
on Github | ||
</a>{' '} | ||
or by sending an email to{' '} | ||
<a href="mailto:[email protected]?Subject=Generative Music sucky audio"> | ||
[email protected] | ||
</a> | ||
. | ||
</p> | ||
)} | ||
<li> | ||
Try listening to the pieces towards the end of the list. Some pieces | ||
play better than others. | ||
</li> | ||
<li> | ||
Try using a more powerful device | ||
{isMobile && ', like a desktop or laptop'}. | ||
</li> | ||
</ol> | ||
You can also report the issue{' '} | ||
<a | ||
href="https://github.com/generative-music/generative.fm/issues/new?title=The%20audio%20sucks&body=Please%20describe%20your%20device%2C%20operating%20system%2C%20and%20internet%20browser..." | ||
target="_blank" | ||
rel="noreferrer noopener" | ||
> | ||
on Github | ||
</a>{' '} | ||
or by sending an email to{' '} | ||
<a href="mailto:[email protected]?Subject=Generative Music sucky audio"> | ||
[email protected] | ||
</a> | ||
. | ||
</div> | ||
); | ||
|
||
|