Merge pull request #62 from justincolangelo/remove-hidden-class-instead-of-clearing

change show and hide to only remove or add class
هذا الالتزام موجود في:
Miroslav Pejic
2022-08-03 22:33:50 +02:00
ملتزم من قبل GitHub
الأصل e7a4870a49 209fd39023
التزام 5dbda06b20

عرض الملف

@@ -617,11 +617,11 @@ function roomIsReady() {
}
function hide(elem) {
elem.className = 'hidden';
elem.classList.add('hidden');
}
function show(elem) {
elem.className = '';
elem.classList.remove('hidden');
}
function setColor(elem, color) {