mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-10 15:21:56 +00:00
Make muting clearer
This commit is contained in:
parent
b0ab01b5f6
commit
4a06a11233
1 changed files with 2 additions and 2 deletions
|
@ -60,7 +60,7 @@ var SoundPanel = React.createClass({
|
||||||
return (
|
return (
|
||||||
<li>
|
<li>
|
||||||
<a href="#" onClick={this.unMute}>
|
<a href="#" onClick={this.unMute}>
|
||||||
Unmute <i className="fa fa-volume-up fa-fw"></i>
|
Muted <i className="fa fa-volume-off fa-fw"></i>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
);
|
);
|
||||||
|
@ -68,7 +68,7 @@ var SoundPanel = React.createClass({
|
||||||
return (
|
return (
|
||||||
<li>
|
<li>
|
||||||
<a href="#" onClick={this.mute}>
|
<a href="#" onClick={this.mute}>
|
||||||
Mute <i className="fa fa-volume-off fa-fw"></i>
|
Unmuted <i className="fa fa-volume-up fa-fw"></i>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue