ggdgsdbsdbbb / static / js / users.js
11 lines · 9 sloc · 463 bytes · 5d8107cb28727996daed016b0c79a9346f864d2b
Raw
1const showUserEls = [...document.querySelectorAll(".data-show-user")];
2
3showUserEls.forEach(showUserEl => {
4 showUserEl.addEventListener("click", () => {
5 const userID = showUserEl.getAttribute("data-id");
6 const panelEl = document.getElementById(userID);
7
8 panelEl.style.display = panelEl.style.display == 'flex' ? 'none' : 'flex';
9 showUserEl.innerText = showUserEl.innerText.toLowerCase().startsWith('show') ? 'Hide user' : 'Show user';
10 });
11});
12