fix
This commit is contained in:
parent
773f67e254
commit
1ee3ebc6eb
|
@ -161,7 +161,7 @@ function togglePlayPause() {
|
||||||
|
|
||||||
function toggleMute() {
|
function toggleMute() {
|
||||||
if (volume.value === 0) {
|
if (volume.value === 0) {
|
||||||
volume.value = .3;
|
volume.value = .5;
|
||||||
} else {
|
} else {
|
||||||
volume.value = 0;
|
volume.value = 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -236,7 +236,7 @@ function toggleFullscreen() {
|
||||||
|
|
||||||
function toggleMute() {
|
function toggleMute() {
|
||||||
if (volume.value === 0) {
|
if (volume.value === 0) {
|
||||||
volume.value = .3;
|
volume.value = .5;
|
||||||
} else {
|
} else {
|
||||||
volume.value = 0;
|
volume.value = 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue