mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 14:01:38 +02:00
semicolons;
This commit is contained in:
parent
01855c0d9c
commit
55fe2f9dc0
3 changed files with 3 additions and 3 deletions
|
@ -36,7 +36,7 @@
|
||||||
for (var i = 0; i < total; i++) {
|
for (var i = 0; i < total; i++) {
|
||||||
sum += a[i];
|
sum += a[i];
|
||||||
}
|
}
|
||||||
return Math.round(sum / total)
|
return Math.round(sum / total);
|
||||||
}
|
}
|
||||||
|
|
||||||
function audioClamp(input) {
|
function audioClamp(input) {
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
for (var i = 0; i < total; i++) {
|
for (var i = 0; i < total; i++) {
|
||||||
sum += a[i];
|
sum += a[i];
|
||||||
}
|
}
|
||||||
return Math.round(sum / total)
|
return Math.round(sum / total);
|
||||||
}
|
}
|
||||||
|
|
||||||
function audioClamp(input) {
|
function audioClamp(input) {
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
} else {
|
} else {
|
||||||
barID = childOne.id;
|
barID = childOne.id;
|
||||||
textID = childZero.id;
|
textID = childZero.id;
|
||||||
originalText = childZero.text
|
originalText = childZero.text;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue