Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix #6840
Browse files Browse the repository at this point in the history
rodyoukai committed Dec 7, 2024
1 parent c4f7023 commit f441894
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/assets/javascripts/hyrax/collapse.js
Original file line number Diff line number Diff line change
@@ -55,10 +55,10 @@ function getStatusSettings(){
}
else if(isCollapsed){
resultDiv.classList.remove("in");
resultDiv.setAttribute("aria-expanded", "false");
// resultDiv.setAttribute("aria-expanded", "false");
}else{
resultDiv.classList.add("in");
resultDiv.setAttribute("aria-expanded", "true");
// resultDiv.setAttribute("aria-expanded", "true");
}
}

0 comments on commit f441894

Please sign in to comment.