Merge pull request #62 from justincolangelo/remove-hidden-class-instead-of-clearing
change show and hide to only remove or add class
هذا الالتزام موجود في:
@@ -617,11 +617,11 @@ function roomIsReady() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function hide(elem) {
|
function hide(elem) {
|
||||||
elem.className = 'hidden';
|
elem.classList.add('hidden');
|
||||||
}
|
}
|
||||||
|
|
||||||
function show(elem) {
|
function show(elem) {
|
||||||
elem.className = '';
|
elem.classList.remove('hidden');
|
||||||
}
|
}
|
||||||
|
|
||||||
function setColor(elem, color) {
|
function setColor(elem, color) {
|
||||||
|
|||||||
المرجع في مشكلة جديدة
حظر مستخدم