[mirotalksfu] - fix typo

هذا الالتزام موجود في:
Miroslav Pejic
2023-12-26 11:01:19 +01:00
الأصل c29b3bc8ea
التزام 8447c9b4da
2 ملفات معدلة مع 7 إضافات و2 حذوفات

عرض الملف

@@ -171,6 +171,9 @@ body {
.init-user {
display: block;
}
.init-video-container {
padding: 0px;
}
}
.init-user select {

عرض الملف

@@ -863,8 +863,10 @@ function checkInitAudio(isAudioAllowed) {
}
function initVideoContainerShow(show = true) {
initVideoContainer.style.padding = show ? '10px' : '0px';
initVideoContainer.style.width = show ? '100%' : 'auto';
const initVideoContainerClass = document.querySelector('.init-video-container');
const windowWidth = window.innerWidth;
initVideoContainerClass.style.padding = show && windowWidth >= 1024 ? '10px' : '0px';
initVideoContainerClass.style.width = show ? '100%' : 'auto';
}
function checkMedia() {