mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
refactor: improve styling a bit
This commit is contained in:
parent
840d23e931
commit
e6e9d5b16d
8 changed files with 118 additions and 32 deletions
|
@ -1,12 +1,12 @@
|
|||
const fullAbout = document.querySelector("#about #full_about")
|
||||
const summary = document.querySelector("#about #summary")
|
||||
const description = document.querySelector("#description > #full")
|
||||
const summary = document.querySelector("#description > #summary")
|
||||
|
||||
function showAbout() {
|
||||
function showDescription() {
|
||||
summary.classList.toggle("hidden")
|
||||
fullAbout.classList.toggle("hidden")
|
||||
description.classList.toggle("hidden")
|
||||
}
|
||||
|
||||
fullAbout && [fullAbout, summary].forEach(item => item.onclick = showAbout)
|
||||
description && [description, summary].forEach(item => item.onclick = showDescription)
|
||||
|
||||
window.addEventListener("load", () => {
|
||||
const geniusURL = "https://genius.com" + document.location.pathname + document.location.search
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue