Dantes (обсуждение | вклад) Нет описания правки |
Dantes (обсуждение | вклад) Нет описания правки |
||
Строка 1: | Строка 1: | ||
function toggleInfo( | function toggleInfo(race) { | ||
var | var humanInfo = document.getElementById('human-info'); | ||
var unathInfo = document.getElementById('unath-info'); | |||
} else { | humanInfo.style.display = 'none'; | ||
unathInfo.style.display = 'none'; | |||
if (race === 'human') { | |||
humanInfo.style.display = 'block'; | |||
} else if (race === 'unath') { | |||
unathInfo.style.display = 'block'; | |||
} | } | ||
} | } |
Версия от 10:30, 18 января 2025
function toggleInfo(race) { var humanInfo = document.getElementById('human-info'); var unathInfo = document.getElementById('unath-info'); humanInfo.style.display = 'none'; unathInfo.style.display = 'none'; if (race === 'human') { humanInfo.style.display = 'block'; } else if (race === 'unath') { unathInfo.style.display = 'block'; } }