[mirotalk] - update dep, fix typo
This commit is contained in:
+3
-3
@@ -32,9 +32,9 @@
|
||||
"ngrok": "^4.3.1",
|
||||
"qs": "^6.11.0",
|
||||
"socket.io": "^4.5.1",
|
||||
"@sentry/node": "^7.6.0",
|
||||
"@sentry/integrations": "^7.6.0",
|
||||
"swagger-ui-express": "^4.4.0",
|
||||
"@sentry/node": "^7.7.0",
|
||||
"@sentry/integrations": "^7.7.0",
|
||||
"swagger-ui-express": "^4.5.0",
|
||||
"uuid": "8.3.2",
|
||||
"yamljs": "^0.3.0"
|
||||
},
|
||||
|
||||
+2
-2
@@ -4176,9 +4176,9 @@ function stripHtml(html) {
|
||||
* @returns
|
||||
*/
|
||||
function isHtml(str) {
|
||||
var a = document.createElement('div');
|
||||
let a = document.createElement('div');
|
||||
a.innerHTML = str;
|
||||
for (var c = a.childNodes, i = c.length; i--; ) {
|
||||
for (let c = a.childNodes, i = c.length; i--; ) {
|
||||
if (c[i].nodeType == 1) return true;
|
||||
}
|
||||
return false;
|
||||
|
||||
@@ -63,7 +63,7 @@ function volumeAudioProcess(event) {
|
||||
let x;
|
||||
|
||||
// Do a root-mean-square on the samples: sum up the squares...
|
||||
for (var i = 0; i < bufLength; i++) {
|
||||
for (let i = 0; i < bufLength; i++) {
|
||||
x = buf[i];
|
||||
if (Math.abs(x) >= this.clipLevel) {
|
||||
this.clipping = true;
|
||||
|
||||
@@ -14,7 +14,7 @@ let ratio = getAspectRatio();
|
||||
*/
|
||||
function getAspectRatio() {
|
||||
customRatio = aspect == 0 ? true : false;
|
||||
var ratio = ratios[aspect].split(':');
|
||||
let ratio = ratios[aspect].split(':');
|
||||
return ratio[1] / ratio[0];
|
||||
}
|
||||
|
||||
|
||||
@@ -424,9 +424,9 @@ access to use this app.
|
||||
|
||||
<script defer src="https://webrtc.github.io/adapter/adapter-latest.js"></script>
|
||||
<script defer src="https://cdn.rawgit.com/muaz-khan/DetectRTC/master/DetectRTC.js"></script>
|
||||
<script defer src="https://cdn.jsdelivr.net/npm/sweetalert2@11.3.5"></script>
|
||||
<script defer src="https://cdn.jsdelivr.net/npm/sweetalert2@11.4.23"></script>
|
||||
<script defer type="module" src="https://unpkg.com/emoji-picker-element@1"></script>
|
||||
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/500/fabric.min.js"></script>
|
||||
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/521/fabric.min.js"></script>
|
||||
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/qrious/4.0.2/qrious.min.js"></script>
|
||||
<script defer src="https://unpkg.com/@popperjs/core@2"></script>
|
||||
<script defer src="https://unpkg.com/tippy.js@6"></script>
|
||||
|
||||
Reference in New Issue
Block a user